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
62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
pkg-config,
|
|
glib,
|
|
hexdump,
|
|
scowl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "halfempty";
|
|
version = "0.40";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "googleprojectzero";
|
|
repo = "halfempty";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-YGq6fneAMo2jCpLPrjzRJ0eeOsStKaK5L+lwQfqcfpY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
hexdump
|
|
];
|
|
buildInputs = [ glib ];
|
|
|
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "fix-bash-specific-syntax.patch";
|
|
url = "https://github.com/googleprojectzero/halfempty/commit/ad15964d0fcaba12e5aca65c8935ebe3f37d7ea3.patch";
|
|
sha256 = "sha256:0hgdci0wwi5wyw8i57w0545cxjmsmswm1y6g4vhykap0y40zizav";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace test/Makefile \
|
|
--replace '/usr/share/dict/words' '${scowl}/share/dict/words.txt'
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -vDt $out/bin halfempty
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
|
|
meta = {
|
|
description = "Fast, parallel test case minimization tool";
|
|
mainProgram = "halfempty";
|
|
homepage = "https://github.com/googleprojectzero/halfempty/";
|
|
maintainers = with lib.maintainers; [ fpletz ];
|
|
license = with lib.licenses; [ asl20 ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|