Merge pull request #94561 from cpcloud/shipyard
shipyard: init at 0.1.17
This commit is contained in:
commit
41d68e4e13
29
pkgs/tools/virtualization/shipyard/default.nix
Normal file
29
pkgs/tools/virtualization/shipyard/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "shipyard";
|
||||
version = "0.1.17";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
rev = "v${version}";
|
||||
owner = "shipyard-run";
|
||||
repo = pname;
|
||||
sha256 = "13cp7qpxchnyxdm26xwdcp557nj16f4h8vlj0p4h79z5g7pcklln";
|
||||
};
|
||||
vendorSha256 = "0gib9s09lz91wawbms9zq4wc5k6bdxfzpxm8q92h0bsjw1bj1hzs";
|
||||
|
||||
buildFlagsArray = [
|
||||
"-ldflags=-s -w -X main.version=${version}"
|
||||
];
|
||||
|
||||
# Tests require a large variety of tools and resources to run including
|
||||
# Kubernetes, Docker, and GCC.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Shipyard is a tool for building modern cloud native development environments";
|
||||
homepage = "https://shipyard.run";
|
||||
license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ cpcloud ];
|
||||
};
|
||||
}
|
@ -2626,6 +2626,8 @@ in
|
||||
|
||||
simdjson = callPackage ../development/libraries/simdjson { };
|
||||
|
||||
shipyard = callPackage ../tools/virtualization/shipyard { };
|
||||
|
||||
simg2img = callPackage ../tools/filesystems/simg2img { };
|
||||
|
||||
simplenes = callPackage ../misc/emulators/simplenes { };
|
||||
|
Loading…
Reference in New Issue
Block a user