Merge pull request #141994 from fabaff/license-drill

drill: specify license
conduit-nginx
figsoda 2021-10-20 08:14:20 -04:00 committed by GitHub
commit d5682916a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 6 deletions

View File

@ -1,4 +1,5 @@
{ lib, stdenv { lib
, stdenv
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
, pkg-config , pkg-config
@ -19,15 +20,20 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "04gj9gaysjcm2d81ds2raak847hr8w84jgfdwqd51wi8xm32w5jf"; cargoSha256 = "04gj9gaysjcm2d81ds2raak847hr8w84jgfdwqd51wi8xm32w5jf";
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; nativeBuildInputs = lib.optionals stdenv.isLinux [
buildInputs = [ ] pkg-config
++ lib.optionals stdenv.isLinux [ openssl ] ];
++ lib.optionals stdenv.isDarwin [ Security ];
buildInputs = lib.optionals stdenv.isLinux [
openssl
] ++ lib.optionals stdenv.isDarwin [
Security
];
meta = with lib; { meta = with lib; {
description = "HTTP load testing application inspired by Ansible syntax"; description = "HTTP load testing application inspired by Ansible syntax";
homepage = "https://github.com/fcsonline/drill"; homepage = "https://github.com/fcsonline/drill";
license = licenses.gpl3; license = licenses.gpl3Only;
maintainers = with maintainers; [ Br1ght0ne ]; maintainers = with maintainers; [ Br1ght0ne ];
}; };
} }