nixpkgs/pkgs/development/tools/sd-local/default.nix

25 lines
596 B
Nix
Raw Normal View History

2020-09-05 15:54:44 +01:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "sd-local";
2021-03-24 20:52:45 +00:00
version = "1.0.27";
2020-09-05 15:54:44 +01:00
src = fetchFromGitHub {
owner = "screwdriver-cd";
repo = pname;
rev = "v${version}";
2021-03-24 20:52:45 +00:00
sha256 = "sha256-aJxSLOUmTuPzBJCnXv2d09Kdh/jPPBUmFnuq8629PWY=";
2020-09-05 15:54:44 +01:00
};
2021-02-03 23:25:44 +00:00
vendorSha256 = "sha256-3KNYG6RBnfFRgIoIyAe7QwAB56ZMF8bHdgt9Ghtod20=";
2020-09-05 15:54:44 +01:00
subPackages = [ "." ];
meta = with lib; {
description = "screwdriver.cd local mode";
homepage = "https://github.com/screwdriver-cd/sd-local";
license = licenses.bsd3;
maintainers = with maintainers; [ midchildan ];
};
}