tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nix-bisect: 0.4.1 -> 0.4.1-unstable-2024-04-19
Robert James Hernandez
2 years ago
d23ba332
23f69f50
+3
-16
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
misc
nix-bisect
default.nix
+3
-16
pkgs/development/tools/misc/nix-bisect/default.nix
···
6
6
7
7
let
8
8
pname = "nix-bisect";
9
9
-
version = "0.4.1";
9
9
+
version = "0.4.1-unstable-2024-04-19";
10
10
in
11
11
python3.pkgs.buildPythonApplication {
12
12
inherit pname version;
···
15
15
src = fetchFromGitHub {
16
16
owner = "timokau";
17
17
repo = pname;
18
18
-
rev = "v${version}";
19
19
-
hash = "sha256-01vj35mMakqKi5zbMIPQ+R8xdkOWbzpnigd3/SU+svw=";
18
18
+
rev = "4f26082fec0817acbfa8cc6ca4c25caaf77ddcd2";
19
19
+
hash = "sha256-zyeE1jYo/9NEG8fB4gQBAR01siP4tyLvjjHN1yUS4Ug=";
20
20
};
21
21
-
22
22
-
patches = [
23
23
-
(fetchpatch {
24
24
-
# Fixes compatibility with recent nix versions
25
25
-
url = "https://github.com/timokau/nix-bisect/commit/01eefe174b740cb90e48b06d67d5582d51786b96.patch";
26
26
-
hash = "sha256-Gls/NtHH7LujdEgLbcIRZ12KsJDrasXIMcHeeBVns4A=";
27
27
-
})
28
28
-
(fetchpatch {
29
29
-
# Fixes TypeError crashes associated with drvs_failed inconsistency
30
30
-
url = "https://github.com/timokau/nix-bisect/commit/9f3a17783046baae64c16f9e2be917c2603977fc.patch";
31
31
-
hash = "sha256-U9NUtgwslcgIf/wvH/WE7t0HGs2OP3wvYDKrb5j+lp0=";
32
32
-
})
33
33
-
];
34
21
35
22
propagatedBuildInputs = with python3.pkgs; [
36
23
appdirs