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

24 lines
589 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildGoModule }:
2016-08-13 05:58:05 +01:00
2019-09-07 16:55:45 +01:00
buildGoModule rec {
name = "drone.io-${version}";
2020-12-09 19:05:15 +00:00
version = "1.10.0";
2016-08-13 05:58:05 +01:00
2020-12-09 19:05:15 +00:00
vendorSha256 = "sha256-cKHX/GnvGELQBfoo0/1UmDQ4Z66GGnnHG7+1CzjinL0=";
2016-08-13 05:58:05 +01:00
doCheck = false;
2016-08-13 05:58:05 +01:00
src = fetchFromGitHub {
owner = "drone";
repo = "drone";
2019-09-07 16:55:45 +01:00
rev = "v${version}";
2020-12-09 19:05:15 +00:00
sha256 = "sha256-12Jac+mXWdUX8gWvmpdO9ROv7Bi0YzvyqnNDVNJOr34=";
2016-08-13 05:58:05 +01:00
};
meta = with stdenv.lib; {
2019-09-07 16:55:45 +01:00
maintainers = with maintainers; [ elohmeier vdemeester ];
2016-08-13 05:58:05 +01:00
license = licenses.asl20;
description = "Continuous Integration platform built on container technology";
};
}