tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
hurl: 1.7.0 -> 1.8.0, add figsoda as a maintainer
figsoda
3 years ago
3384acc1
ee716eeb
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
hurl
default.nix
+5
-5
pkgs/tools/networking/hurl/default.nix
···
1
{ lib
2
-
, stdenv
3
, rustPlatform
4
, fetchFromGitHub
5
, pkg-config
6
, installShellFiles
7
, libxml2
8
, openssl
0
9
, curl
10
}:
11
12
rustPlatform.buildRustPackage rec {
13
pname = "hurl";
14
-
version = "1.7.0";
15
16
src = fetchFromGitHub {
17
owner = "Orange-OpenSource";
18
repo = pname;
19
rev = version;
20
-
sha256 = "sha256-bv51OOOQFHkFjtv/VXeemMybohtzrhyGfXQkVPDjcps=";
21
};
22
23
nativeBuildInputs = [
···
35
# Tests require network access to a test server
36
doCheck = false;
37
38
-
cargoSha256 = "sha256-BIt8xZveOeDUktLldtymYQqlkgqa7MJjKeSPby70Czg=";
39
40
postInstall = ''
41
installManPage docs/manual/hurl.1 docs/manual/hurlfmt.1
···
45
description = "Command line tool that performs HTTP requests defined in a simple plain text format.";
46
homepage = "https://hurl.dev/";
47
changelog = "https://github.com/Orange-OpenSource/hurl/raw/${version}/CHANGELOG.md";
48
-
maintainers = with maintainers; [ eonpatapon ];
49
license = licenses.asl20;
50
};
51
}
···
1
{ lib
0
2
, rustPlatform
3
, fetchFromGitHub
4
, pkg-config
5
, installShellFiles
6
, libxml2
7
, openssl
8
+
, stdenv
9
, curl
10
}:
11
12
rustPlatform.buildRustPackage rec {
13
pname = "hurl";
14
+
version = "1.8.0";
15
16
src = fetchFromGitHub {
17
owner = "Orange-OpenSource";
18
repo = pname;
19
rev = version;
20
+
sha256 = "sha256-d2iWLswlKBow1B+cOaSmsHVWXk/ugwf3pn3OiLhCml0=";
21
};
22
23
nativeBuildInputs = [
···
35
# Tests require network access to a test server
36
doCheck = false;
37
38
+
cargoSha256 = "sha256-A3vl7QRKuox8aE0FsEOiVH/5sRMnKNcdjT2wWPLhd+4=";
39
40
postInstall = ''
41
installManPage docs/manual/hurl.1 docs/manual/hurlfmt.1
···
45
description = "Command line tool that performs HTTP requests defined in a simple plain text format.";
46
homepage = "https://hurl.dev/";
47
changelog = "https://github.com/Orange-OpenSource/hurl/raw/${version}/CHANGELOG.md";
48
+
maintainers = with maintainers; [ eonpatapon figsoda ];
49
license = licenses.asl20;
50
};
51
}