biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / ac / acc / package.nix
bloba74227284a900b888859d26a987be7989f707a5f
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 }:
6 stdenv.mkDerivation (finalAttrs: {
7   pname = "acc";
8   version = "1.60";
10   src = fetchFromGitHub {
11     owner = "zdoom";
12     repo = "acc";
13     rev = finalAttrs.version;
14     hash = "sha256-HGF4O4LcMDY4f/ZuBbkvx5Wd86+8Ict624eKTJ88/rQ=";
15   };
17   patches = [
18     # Don't force static builds
19     ./disable-static.patch
20   ];
22   nativeBuildInputs = [ cmake ];
24   installPhase = ''
25     runHook preInstall
27     install -D acc $out/bin/acc
29     runHook postInstall
30   '';
32   meta = with lib; {
33     description = "ACS script compiler for use with ZDoom and Hexen";
34     homepage = "https://zdoom.org/wiki/ACC";
35     license = licenses.activision;
36     maintainers = with maintainers; [ emilytrau ];
37     platforms = platforms.all;
38     mainProgram = "acc";
39   };