File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 44 fetchFromGitHub ,
55 curl ,
66 python3 ,
7+ perl ,
78 trurl ,
89 testers ,
910} :
1011
1112stdenv . mkDerivation rec {
1213 pname = "trurl" ;
13- version = "0.16" ;
14+ version = "0.16.1 " ;
1415
1516 src = fetchFromGitHub {
1617 owner = "curl" ;
1718 repo = "trurl" ;
1819 rev = "trurl-${ version } " ;
19- hash = "sha256-Og7+FVCBWohVd58GVxFN3KChcG0Kts1MokiOQXZ1OTc =" ;
20+ hash = "sha256-VCMT4WgZ6LG7yiKaRy7KTgTkbACVXb4rw62lWnVAuP0 =" ;
2021 } ;
2122
23+ postPatch = ''
24+ patchShebangs scripts/*
25+ '' ;
26+
2227 outputs = [
2328 "out"
2429 "dev"
@@ -28,10 +33,15 @@ stdenv.mkDerivation rec {
2833
2934 enableParallelBuilding = true ;
3035
31- nativeBuildInputs = [ curl ] ;
36+ nativeBuildInputs = [
37+ curl
38+ perl
39+ ] ;
3240 buildInputs = [ curl ] ;
3341 makeFlags = [ "PREFIX=$(out)" ] ;
3442
43+ strictDeps = true ;
44+
3545 doCheck = true ;
3646 nativeCheckInputs = [ python3 ] ;
3747 checkTarget = "test" ;
You can’t perform that action at this time.
0 commit comments