biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / sd-local / default.nix
blob29c1c2de4575eeefc893658997d72cf21736a2b9
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "sd-local";
5   version = "1.0.54";
7   src = fetchFromGitHub {
8     owner = "screwdriver-cd";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-2R/TVKCj3abUtrzzMW907GCC1H+lxTmg4J1kHHztE8I=";
12   };
14   vendorHash = "sha256-rAFfyMlnhDrb+f04S9+hNygXPaoG9mheQMxaJtXxBVw=";
16   subPackages = [ "." ];
18   meta = with lib; {
19     description = "screwdriver.cd local mode";
20     mainProgram = "sd-local";
21     homepage = "https://github.com/screwdriver-cd/sd-local";
22     license = licenses.bsd3;
23     maintainers = with maintainers; [ midchildan ];
24   };