mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
halfempty: init at 0.30
This commit is contained in:
parent
41483340c4
commit
80c99eedef
37
pkgs/development/tools/halfempty/default.nix
Normal file
37
pkgs/development/tools/halfempty/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkgconfig, glib, utillinux, scowl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "halfempty";
|
||||
version = "0.30";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "googleprojectzero";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0838pw0ccjvlxmjygzrnppz1fx1a10vjzdgjbxgb4wgpqjr8v6vc";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig utillinux ];
|
||||
buildInputs = [ glib ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
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";
|
||||
homepage = "https://github.com/googleprojectzero/halfempty/";
|
||||
maintainers = with lib.maintainers; [ fpletz ];
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
};
|
||||
}
|
|
@ -10181,6 +10181,8 @@ in
|
|||
|
||||
hadolint = haskell.lib.justStaticExecutables haskellPackages.hadolint;
|
||||
|
||||
halfempty = callPackage ../development/tools/halfempty {};
|
||||
|
||||
hcloud = callPackage ../development/tools/hcloud { };
|
||||
|
||||
help2man = callPackage ../development/tools/misc/help2man { };
|
||||
|
|
Loading…
Reference in a new issue