mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
215801b5f4
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, curl, python3, python3Packages, trurl, testers }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "trurl";
|
|
version = "0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "curl";
|
|
repo = pname;
|
|
rev = "${pname}-${version}";
|
|
hash = "sha256-/Gf7T67LPzVPhjAqTvbLiJOqfKeWvwH/WHelJZTH4ZI=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
separateDebugInfo = stdenv.isLinux;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ curl ];
|
|
buildInputs = [ curl ];
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [ python3 python3Packages.packaging ];
|
|
checkTarget = "test";
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = trurl;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A command line tool for URL parsing and manipulation";
|
|
homepage = "https://curl.se/trurl";
|
|
changelog = "https://github.com/curl/trurl/releases/tag/${pname}-${version}";
|
|
license = licenses.curl;
|
|
maintainers = with maintainers; [ christoph-heiss ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|