lol

nix-bisect: 0.4.1 -> 0.4.1-unstable-2024-04-19

+3 -16
+3 -16
pkgs/development/tools/misc/nix-bisect/default.nix
··· 6 6 7 7 let 8 8 pname = "nix-bisect"; 9 - version = "0.4.1"; 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 - rev = "v${version}"; 19 - hash = "sha256-01vj35mMakqKi5zbMIPQ+R8xdkOWbzpnigd3/SU+svw="; 18 + rev = "4f26082fec0817acbfa8cc6ca4c25caaf77ddcd2"; 19 + hash = "sha256-zyeE1jYo/9NEG8fB4gQBAR01siP4tyLvjjHN1yUS4Ug="; 20 20 }; 21 - 22 - patches = [ 23 - (fetchpatch { 24 - # Fixes compatibility with recent nix versions 25 - url = "https://github.com/timokau/nix-bisect/commit/01eefe174b740cb90e48b06d67d5582d51786b96.patch"; 26 - hash = "sha256-Gls/NtHH7LujdEgLbcIRZ12KsJDrasXIMcHeeBVns4A="; 27 - }) 28 - (fetchpatch { 29 - # Fixes TypeError crashes associated with drvs_failed inconsistency 30 - url = "https://github.com/timokau/nix-bisect/commit/9f3a17783046baae64c16f9e2be917c2603977fc.patch"; 31 - hash = "sha256-U9NUtgwslcgIf/wvH/WE7t0HGs2OP3wvYDKrb5j+lp0="; 32 - }) 33 - ]; 34 21 35 22 propagatedBuildInputs = with python3.pkgs; [ 36 23 appdirs