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

25 lines
598 B
Nix
Raw Normal View History

2020-09-05 07:54:44 -07:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "sd-local";
2020-12-04 15:06:42 -08:00
version = "1.0.17";
2020-09-05 07:54:44 -07:00
src = fetchFromGitHub {
owner = "screwdriver-cd";
repo = pname;
rev = "v${version}";
2020-12-04 15:06:42 -08:00
sha256 = "13krr1zjh544swv4frfapvyi7bm8qf121x6qz9jqbw2cm3mid301";
2020-09-05 07:54:44 -07:00
};
2020-11-11 18:10:47 -08:00
vendorSha256 = "1y4nyw7rpgipblxqaps2zsd07cin8d0i0g9gvsnc3vifi6g29s8z";
2020-09-05 07:54:44 -07: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 ];
};
}