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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
596 B
Nix
Raw Normal View History

2020-09-05 14:54:44 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "sd-local";
2022-11-29 18:47:12 +00:00
version = "1.0.46";
2020-09-05 14:54:44 +00:00
src = fetchFromGitHub {
owner = "screwdriver-cd";
repo = pname;
rev = "v${version}";
2022-11-29 18:47:12 +00:00
sha256 = "sha256-+Z12atz6fSM5FJFOqUhjalxkP/1Kkm3xWgwUVlB9JvM=";
2020-09-05 14:54:44 +00:00
};
2022-11-29 18:47:12 +00:00
vendorSha256 = "sha256-sgCUho8KFt0iFEuupQdMV6IZTVCsTXsNqv2ab5jp0mI=";
2020-09-05 14:54:44 +00: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 ];
};
}