e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
30 lines
795 B
Nix
30 lines
795 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "jumppad";
|
|
version = "0.5.59";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jumppad-labs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-ObDbZ3g+BtH8JCqLIa+gR69GowZA8T9HMPuKNDgW3uA=";
|
|
};
|
|
vendorHash = "sha256-9DLDc6zI0BYd2AK9xwqFNJTFdKXagkdPwczLhCvud94=";
|
|
|
|
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";
|
|
};
|
|
}
|