3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/virtualization/shipyard/default.nix

30 lines
784 B
Nix
Raw Normal View History

2020-08-02 17:41:16 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "shipyard";
2022-02-20 02:34:28 +00:00
version = "0.3.45";
2020-08-02 17:41:16 +01:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "shipyard-run";
repo = pname;
2022-02-20 02:34:28 +00:00
sha256 = "sha256-gJwcf7X5FTHKNNQczD352yOUjSca45Zn0wc4bvD9Z30=";
2020-08-02 17:41:16 +01:00
};
2022-02-17 12:29:29 +00:00
vendorSha256 = "sha256-mXYnmDppVqhjlkGVkvp1YaEwBEkHBUddxLof389huMQ=";
2020-08-02 17:41:16 +01:00
2021-08-26 07:45:51 +01:00
ldflags = [
"-s" "-w" "-X main.version=${version}"
2020-08-02 17:41:16 +01:00
];
# 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 ];
};
}