Skip to content

Instantly share code, notes, and snippets.

@lovesegfault
Created February 8, 2020 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lovesegfault/433e8240f4cef83db8e373dd5ebccec3 to your computer and use it in GitHub Desktop.
Save lovesegfault/433e8240f4cef83db8e373dd5ebccec3 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
let
nix-bisect = (python3.pkgs.buildPythonPackage rec {
pname = "nix-bisect";
version = "0.2.0";
src = fetchFromGitHub {
owner = "timokau";
repo = "nix-bisect";
rev = "v${version}";
sha256 = "0rg7ndwbn44kximipabfbvvv5jhgi6vs87r64wfs5by81iw0ivam";
};
});
in pkgs.python3Packages.buildPythonPackage rec {
pname = "flaky-bisect";
version = "0.1.0";
propagatedBuildInputs = [ nix-bisect ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment