nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

halfempty: init at 0.30

+39
+37
pkgs/development/tools/halfempty/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, pkgconfig, glib, utillinux, scowl }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "halfempty"; 5 + version = "0.30"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "googleprojectzero"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "0838pw0ccjvlxmjygzrnppz1fx1a10vjzdgjbxgb4wgpqjr8v6vc"; 12 + }; 13 + 14 + nativeBuildInputs = [ pkgconfig utillinux ]; 15 + buildInputs = [ glib ]; 16 + 17 + enableParallelBuilding = true; 18 + 19 + postPatch = '' 20 + substituteInPlace test/Makefile \ 21 + --replace '/usr/share/dict/words' '${scowl}/share/dict/words.txt' 22 + ''; 23 + 24 + installPhase = '' 25 + install -vDt $out/bin halfempty 26 + ''; 27 + 28 + doCheck = true; 29 + checkTarget = "test"; 30 + 31 + meta = { 32 + description = "Fast, parallel test case minimization tool"; 33 + homepage = "https://github.com/googleprojectzero/halfempty/"; 34 + maintainers = with lib.maintainers; [ fpletz ]; 35 + license = with lib.licenses; [ asl20 ]; 36 + }; 37 + }
+2
pkgs/top-level/all-packages.nix
··· 10181 10181 10182 10182 hadolint = haskell.lib.justStaticExecutables haskellPackages.hadolint; 10183 10183 10184 + halfempty = callPackage ../development/tools/halfempty {}; 10185 + 10184 10186 hcloud = callPackage ../development/tools/hcloud { }; 10185 10187 10186 10188 help2man = callPackage ../development/tools/misc/help2man { };