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.

26 lines
624 B
Nix
Raw Normal View History

2020-09-05 14:54:44 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "sd-local";
2024-02-16 19:15:51 +00:00
version = "1.0.54";
2020-09-05 14:54:44 +00:00
src = fetchFromGitHub {
owner = "screwdriver-cd";
repo = pname;
rev = "v${version}";
2024-02-16 19:15:51 +00:00
sha256 = "sha256-2R/TVKCj3abUtrzzMW907GCC1H+lxTmg4J1kHHztE8I=";
2020-09-05 14:54:44 +00:00
};
2024-02-16 19:15:51 +00:00
vendorHash = "sha256-rAFfyMlnhDrb+f04S9+hNygXPaoG9mheQMxaJtXxBVw=";
2020-09-05 14:54:44 +00:00
subPackages = [ "." ];
meta = with lib; {
description = "screwdriver.cd local mode";
mainProgram = "sd-local";
2020-09-05 14:54:44 +00:00
homepage = "https://github.com/screwdriver-cd/sd-local";
license = licenses.bsd3;
maintainers = with maintainers; [ midchildan ];
};
}