2021-01-09 10:05:03 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
2023-07-15 17:15:38 +00:00
|
|
|
pname = "jumppad";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "0.5.59";
|
2021-01-09 10:05:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-07-15 17:15:38 +00:00
|
|
|
owner = "jumppad-labs";
|
2021-01-09 10:05:03 +00:00
|
|
|
repo = pname;
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = "v${version}";
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-ObDbZ3g+BtH8JCqLIa+gR69GowZA8T9HMPuKNDgW3uA=";
|
2021-01-09 10:05:03 +00:00
|
|
|
};
|
2024-01-13 08:15:51 +00:00
|
|
|
vendorHash = "sha256-9DLDc6zI0BYd2AK9xwqFNJTFdKXagkdPwczLhCvud94=";
|
2021-01-09 10:05:03 +00:00
|
|
|
|
2021-08-27 14:25:00 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s" "-w" "-X main.version=${version}"
|
2021-01-09 10:05:03 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Tests require a large variety of tools and resources to run including
|
|
|
|
# Kubernetes, Docker, and GCC.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2023-07-15 17:15:38 +00:00
|
|
|
description = "A tool for building modern cloud native development environments";
|
|
|
|
homepage = "https://jumppad.dev";
|
2021-01-09 10:05:03 +00:00
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ cpcloud ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "jumppad";
|
2021-01-09 10:05:03 +00:00
|
|
|
};
|
|
|
|
}
|