Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
798 B
Nix
37 lines
798 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "doom-bcc";
|
|
version = "unstable-2018-01-04";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wormt";
|
|
repo = "bcc";
|
|
rev = "d58b44d9f18b28fd732c27113e5607a454506d19";
|
|
sha256 = "1m83ip40ln61qrvb1fbgaqbld2xip9n3k817lwkk1936pml9zcrq";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
|
|
|
|
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 lib; {
|
|
description = "Compiler for Doom/Hexen scripts (ACS, BCS)";
|
|
mainProgram = "bcc";
|
|
homepage = "https://github.com/wormt/bcc";
|
|
license = licenses.mit;
|
|
};
|
|
}
|