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
-
{ lib, stdenv
0
2
, rustPlatform
3
, fetchFromGitHub
4
, pkg-config
···
19
20
cargoSha256 = "04gj9gaysjcm2d81ds2raak847hr8w84jgfdwqd51wi8xm32w5jf";
21
22
-
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
23
-
buildInputs = [ ]
24
-
++ lib.optionals stdenv.isLinux [ openssl ]
25
-
++ lib.optionals stdenv.isDarwin [ Security ];
0
0
0
0
0
26
27
meta = with lib; {
28
description = "HTTP load testing application inspired by Ansible syntax";
29
homepage = "https://github.com/fcsonline/drill";
30
-
license = licenses.gpl3;
31
maintainers = with maintainers; [ Br1ght0ne ];
32
};
33
}
···
1
+
{ lib
2
+
, stdenv
3
, rustPlatform
4
, fetchFromGitHub
5
, pkg-config
···
20
21
cargoSha256 = "04gj9gaysjcm2d81ds2raak847hr8w84jgfdwqd51wi8xm32w5jf";
22
23
+
nativeBuildInputs = lib.optionals stdenv.isLinux [
24
+
pkg-config
25
+
];
26
+
27
+
buildInputs = lib.optionals stdenv.isLinux [
28
+
openssl
29
+
] ++ lib.optionals stdenv.isDarwin [
30
+
Security
31
+
];
32
33
meta = with lib; {
34
description = "HTTP load testing application inspired by Ansible syntax";
35
homepage = "https://github.com/fcsonline/drill";
36
+
license = licenses.gpl3Only;
37
maintainers = with maintainers; [ Br1ght0ne ];
38
};
39
}