tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
drill: specify license
Fabian Affolter
4 years ago
a94e0e44
cb10e4dd
+12
-6
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
drill
default.nix
+12
-6
pkgs/tools/networking/drill/default.nix
···
1
1
-
{ lib, stdenv
1
1
+
{ lib
2
2
+
, stdenv
2
3
, rustPlatform
3
4
, fetchFromGitHub
4
5
, pkg-config
···
19
20
20
21
cargoSha256 = "04gj9gaysjcm2d81ds2raak847hr8w84jgfdwqd51wi8xm32w5jf";
21
22
22
22
-
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
23
23
-
buildInputs = [ ]
24
24
-
++ lib.optionals stdenv.isLinux [ openssl ]
25
25
-
++ lib.optionals stdenv.isDarwin [ Security ];
23
23
+
nativeBuildInputs = lib.optionals stdenv.isLinux [
24
24
+
pkg-config
25
25
+
];
26
26
+
27
27
+
buildInputs = lib.optionals stdenv.isLinux [
28
28
+
openssl
29
29
+
] ++ lib.optionals stdenv.isDarwin [
30
30
+
Security
31
31
+
];
26
32
27
33
meta = with lib; {
28
34
description = "HTTP load testing application inspired by Ansible syntax";
29
35
homepage = "https://github.com/fcsonline/drill";
30
30
-
license = licenses.gpl3;
36
36
+
license = licenses.gpl3Only;
31
37
maintainers = with maintainers; [ Br1ght0ne ];
32
38
};
33
39
}