504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
30 lines
795 B
Nix
30 lines
795 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "jumppad";
|
|
version = "0.5.53";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jumppad-labs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-93KTi7m+7zS6hSIF4dA995Z8jUdmE5u3O8ytCLsEqdE=";
|
|
};
|
|
vendorHash = "sha256-o3jA1gVKW6KUHzy5zZO4aaGVoCBFN96hbK0/usQ32fw=";
|
|
|
|
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 = "A tool for building modern cloud native development environments";
|
|
homepage = "https://jumppad.dev";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ cpcloud ];
|
|
mainProgram = "jumppad";
|
|
};
|
|
}
|