nixpkgs/pkgs/development/tools/misc/kool/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
864 B
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
2023-08-09 13:55:15 +00:00
, testers
, kool
}:
buildGoModule rec {
pname = "kool";
2024-03-01 13:51:46 +00:00
version = "3.2.0";
src = fetchFromGitHub {
owner = "kool-dev";
repo = "kool";
rev = version;
2024-03-01 13:51:46 +00:00
hash = "sha256-oMPzDU5MNIgxg7E2lgvgXEfO4W+VrFlLThOC9OEqhWo=";
};
2024-01-28 14:12:59 +00:00
vendorHash = "sha256-PmS96KVhe9TDmtYBx2hROLCbGMQ0OY3MN405dUmxPzk=";
ldflags = [
"-s"
"-w"
"-X=kool-dev/kool/commands.version=${version}"
];
2023-08-09 13:55:15 +00:00
passthru.tests = {
version = testers.testVersion {
package = kool;
};
};
meta = with lib; {
description = "From local development to the cloud: development workflow made easy";
mainProgram = "kool";
homepage = "https://kool.dev";
changelog = "https://github.com/kool-dev/kool/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}