sd-local: init at 1.0.5
This commit is contained in:
parent
dc5c37e5a2
commit
5219f8e76b
2 changed files with 26 additions and 0 deletions
24
pkgs/development/tools/sd-local/default.nix
Normal file
24
pkgs/development/tools/sd-local/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "sd-local";
|
||||
version = "1.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "screwdriver-cd";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "09j1wcx66sz2b0pps0bgbay5x06lc0d2awxjvd5zi8wqnbsrdq60";
|
||||
};
|
||||
|
||||
vendorSha256 = "1qy51jx181rwim2v53ysgf7rys0nmxsbawvsbh3z1ihh3dlgw5bc";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "screwdriver.cd local mode";
|
||||
homepage = "https://github.com/screwdriver-cd/sd-local";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ midchildan ];
|
||||
};
|
||||
}
|
|
@ -11402,6 +11402,8 @@ in
|
|||
|
||||
scaff = callPackage ../development/tools/scaff { };
|
||||
|
||||
sd-local = callPackage ../development/tools/sd-local { };
|
||||
|
||||
selenium-server-standalone = callPackage ../development/tools/selenium/server { };
|
||||
|
||||
selendroid = callPackage ../development/tools/selenium/selendroid { };
|
||||
|
|
Loading…
Reference in a new issue