trurl: 0.16 -> 0.16.1

Changelog: https://github.com/curl/trurl/releases/tag/trurl-0.16.1

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss
2025-05-14 10:35:33 +02:00
parent e235177a38
commit 823938b49c
+13 -3
View File
@@ -4,21 +4,26 @@
fetchFromGitHub,
curl,
python3,
perl,
trurl,
testers,
}:
stdenv.mkDerivation rec {
pname = "trurl";
version = "0.16";
version = "0.16.1";
src = fetchFromGitHub {
owner = "curl";
repo = "trurl";
rev = "trurl-${version}";
hash = "sha256-Og7+FVCBWohVd58GVxFN3KChcG0Kts1MokiOQXZ1OTc=";
hash = "sha256-VCMT4WgZ6LG7yiKaRy7KTgTkbACVXb4rw62lWnVAuP0=";
};
postPatch = ''
patchShebangs scripts/*
'';
outputs = [
"out"
"dev"
@@ -28,10 +33,15 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
nativeBuildInputs = [ curl ];
nativeBuildInputs = [
curl
perl
];
buildInputs = [ curl ];
makeFlags = [ "PREFIX=$(out)" ];
strictDeps = true;
doCheck = true;
nativeCheckInputs = [ python3 ];
checkTarget = "test";