Skip to content

Commit 823938b

Browse files
trurl: 0.16 -> 0.16.1
Changelog: https://github.com/curl/trurl/releases/tag/trurl-0.16.1 Signed-off-by: Christoph Heiss <[email protected]>
1 parent e235177 commit 823938b

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

pkgs/by-name/tr/trurl/package.nix

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,26 @@
44
fetchFromGitHub,
55
curl,
66
python3,
7+
perl,
78
trurl,
89
testers,
910
}:
1011

1112
stdenv.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";

0 commit comments

Comments
 (0)