29 lines
766 B
Nix
29 lines
766 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "jumppad";
|
|
version = "0.5.35";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jumppad-labs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-ZqP1m2Fbm9bn9uxJ7Ll4Vqa+STIrxX0jALGZJmOyAT8=";
|
|
};
|
|
vendorHash = "sha256-LneL4SzvcThfqqWdKpAU3mFAW1FVRTU9/T3l+yKBSME=";
|
|
|
|
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 ];
|
|
};
|
|
}
|