02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
24 lines
596 B
Nix
24 lines
596 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "sd-local";
|
|
version = "1.0.42";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "screwdriver-cd";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-xPskMKInmaWi5dwx5E5z1ssTQ6Smj1L40Voy++g7Rhs=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-43hcIIGqBscMjQzaIGdMqV5lq3od4Ls4TJdTeFGtu5Y=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
meta = with lib; {
|
|
description = "screwdriver.cd local mode";
|
|
homepage = "https://github.com/screwdriver-cd/sd-local";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ midchildan ];
|
|
};
|
|
}
|