2020-03-21 09:53:00 +00:00
|
|
|
{ stdenv, fetchFromGitHub, buildGoModule, Security }:
|
2018-07-09 08:23:48 +00:00
|
|
|
|
2020-03-21 09:53:00 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "drone-cli";
|
2020-03-21 09:53:00 +00:00
|
|
|
version = "1.2.1";
|
2018-07-09 08:23:48 +00:00
|
|
|
|
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}")
|
|
|
|
'';
|
2018-07-09 08:23:48 +00:00
|
|
|
|
|
|
|
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";
|
2018-07-09 08:23:48 +00:00
|
|
|
};
|
|
|
|
|
2020-03-21 09:53:00 +00:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
|
2018-07-09 08:23:48 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
maintainers = with maintainers; [ bricewge ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
description = "Command line client for the Drone continuous integration server.";
|
|
|
|
};
|
|
|
|
}
|