nixpkgs/pkgs/development/tools/continuous-integration/drone-cli/default.nix

28 lines
717 B
Nix
Raw Normal View History

2020-03-21 09:53:00 +00:00
{ stdenv, fetchFromGitHub, buildGoModule, Security }:
2020-03-21 09:53:00 +00:00
buildGoModule rec {
pname = "drone-cli";
2020-03-21 09:53:00 +00:00
version = "1.2.1";
2020-01-31 14:43:37 +00:00
modSha256 = "0g0vq4vm2hy00r2gjsrhg57xv9sldlqix3wzimiqdli085bcz46b";
2019-10-06 19:31:23 +00:00
preBuild = ''
buildFlagsArray+=("-ldflags" "-X main.version=${version}")
'';
src = fetchFromGitHub {
owner = "drone";
repo = "drone-cli";
2020-03-21 09:53:00 +00:00
rev = "v${version}";
2020-01-31 14:43:37 +00:00
sha256 = "19icihi5nxcafxlh4w61nl4cd0dhvik9zl8g4gqmazikjqsjms2j";
};
2020-03-21 09:53:00 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
meta = with stdenv.lib; {
maintainers = with maintainers; [ bricewge ];
license = licenses.asl20;
description = "Command line client for the Drone continuous integration server.";
};
}