1{ lib, fetchFromGitHub, buildGoModule }:
2
3buildGoModule rec {
4 pname = "sd-local";
5 version = "1.0.32";
6
7 src = fetchFromGitHub {
8 owner = "screwdriver-cd";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "sha256-4VKTp4q2CoIWQTiSgs254deafuowiTpuLVJ79nmqAaA=";
12 };
13
14 vendorSha256 = "sha256-4xuWehRrmVdS2F6r00LZLKq/oHlWqCTQ/jYUKeIJ6DI=";
15
16 subPackages = [ "." ];
17
18 meta = with lib; {
19 description = "screwdriver.cd local mode";
20 homepage = "https://github.com/screwdriver-cd/sd-local";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ midchildan ];
23 };
24}