nixpkgs/pkgs/tools/virtualization/shipyard/default.nix

30 lines
784 B
Nix
Raw Normal View History

2020-08-02 18:41:16 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "shipyard";
2021-09-16 20:08:31 +02:00
version = "0.3.30";
2020-08-02 18:41:16 +02:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "shipyard-run";
repo = pname;
2021-09-16 20:08:31 +02:00
sha256 = "sha256-NaCG0oG9j1yoXOsfnQXFd+PdZfJTOdvYndFIftIAnxE=";
2020-08-02 18:41:16 +02:00
};
2021-08-22 16:17:28 +02:00
vendorSha256 = "sha256-YClNdtnakJJOEytTbopTXeZy218N4vHP3tQLavLgPbg=";
2020-08-02 18:41:16 +02:00
2021-08-26 08:45:51 +02:00
ldflags = [
"-s" "-w" "-X main.version=${version}"
2020-08-02 18:41:16 +02: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 ];
};
}