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

23 lines
611 B
Nix
Raw Normal View History

2019-09-07 17:55:45 +02:00
{ stdenv, fetchFromGitHub, buildGoModule }:
2016-08-13 06:58:05 +02:00
2019-09-07 17:55:45 +02:00
buildGoModule rec {
name = "drone.io-${version}";
2019-10-06 21:16:11 +02:00
version = "1.6.0";
2016-08-13 06:58:05 +02:00
goPackagePath = "github.com/drone/drone";
2019-10-06 21:16:11 +02:00
modSha256 = "0l33qib9riknrjdpsvd7n6slqp485vx66xl6w7m24b5sc7yfsg7m";
2016-08-13 06:58:05 +02:00
src = fetchFromGitHub {
owner = "drone";
repo = "drone";
2019-09-07 17:55:45 +02:00
rev = "v${version}";
2019-10-06 21:16:11 +02:00
sha256 = "0ij4a6rh17ib360bxrpncf8lp839b6sl17bd0fp3xvwmibk6xgjz";
2016-08-13 06:58:05 +02:00
};
meta = with stdenv.lib; {
2019-09-07 17:55:45 +02:00
maintainers = with maintainers; [ elohmeier vdemeester ];
2016-08-13 06:58:05 +02:00
license = licenses.asl20;
description = "Continuous Integration platform built on container technology";
};
}