mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
34 lines
816 B
Nix
34 lines
816 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "jumppad";
|
|
version = "0.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jumppad-labs";
|
|
repo = "jumppad";
|
|
rev = version;
|
|
hash = "sha256-zJS27lguSHvJge/iRwFhm9GtK0t3VQUt+uFZdjgkaeU=";
|
|
};
|
|
vendorHash = "sha256-kn7rI5XwpqHeK7mA4FT67tLo2edb+dyD+rveVrGIjIo=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-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 = "Tool for building modern cloud native development environments";
|
|
homepage = "https://jumppad.dev";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ cpcloud ];
|
|
mainProgram = "jumppad";
|
|
};
|
|
}
|