nixpkgs/pkgs/games/zdoom/bcc-git.nix

32 lines
771 B
Nix
Raw Normal View History

2018-02-03 17:53:26 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
name = "doom-bcc-git-0.8.0.2018.01.04";
src = fetchFromGitHub {
owner = "wormt";
repo = "bcc";
rev = "d58b44d9f18b28fd732c27113e5607a454506d19";
sha256 = "1m83ip40ln61qrvb1fbgaqbld2xip9n3k817lwkk1936pml9zcrq";
};
enableParallelBuilding = true;
2018-02-04 00:00:58 +00:00
makeFlags = ["CC=cc"];
2018-02-03 17:53:26 +00:00
patches = [ ./bcc-warning-fix.patch ];
installPhase = ''
mkdir -p $out/{bin,lib,share/doc}
install -m755 bcc $out/bin/bcc
cp -av doc $out/share/doc/bcc
cp -av lib $out/lib/bcc
'';
meta = with stdenv.lib; {
description = "Compiler for Doom/Hexen scripts (ACS, BCS)";
homepage = "https://github.com/wormt/bcc";
2018-02-03 17:53:26 +00:00
license = licenses.mit;
maintainers = with maintainers; [ertes];
};
}