forked from mirrors/nixpkgs
Merge pull request #167326 from mweinelt/nix-bisect
This commit is contained in:
commit
68f788ecd8
35
pkgs/development/tools/misc/nix-bisect/default.nix
Normal file
35
pkgs/development/tools/misc/nix-bisect/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "nix-bisect";
|
||||
version = "0.4.1";
|
||||
in
|
||||
python3.pkgs.buildPythonApplication {
|
||||
inherit pname version;
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "timokau";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-01vj35mMakqKi5zbMIPQ+R8xdkOWbzpnigd3/SU+svw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
appdirs
|
||||
numpy
|
||||
pexpect
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bisect nix builds";
|
||||
homepage = "https://github.com/timokau/nix-bisect";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
|
@ -15524,6 +15524,8 @@ with pkgs;
|
|||
pythonPackages = python3Packages;
|
||||
};
|
||||
|
||||
nix-bisect = callPackage ../development/tools/misc/nix-bisect { };
|
||||
|
||||
nix-build-uncached = callPackage ../development/tools/misc/nix-build-uncached { };
|
||||
|
||||
nexus = callPackage ../development/tools/repository-managers/nexus {
|
||||
|
|
Loading…
Reference in a new issue