Merge pull request #233267 from figsoda/kool

kool: init at 2.1.0
This commit is contained in:
Ilan Joselevich
2023-05-22 21:58:13 +03:00
committed by GitHub
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "kool";
version = "2.1.0";
src = fetchFromGitHub {
owner = "kool-dev";
repo = "kool";
rev = version;
hash = "sha256-dMmokaFPzunpCdkJFVc3422SEKZNIOi8nzRB99Gi5Tg=";
};
vendorHash = "sha256-8t+OZB9jrlOVHLURPmtz0ent6COEOVMFfObe2LH1jRM=";
ldflags = [
"-s"
"-w"
"-X=kool-dev/kool/commands.version=${version}"
];
meta = with lib; {
description = "From local development to the cloud: development workflow made easy";
homepage = "https://kool.dev";
changelog = "https://github.com/kool-dev/kool/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}
+2
View File
@@ -9114,6 +9114,8 @@ with pkgs;
knockpy = callPackage ../tools/security/knockpy { };
kool = callPackage ../development/tools/misc/kool { };
kore = callPackage ../development/web/kore {
openssl = openssl_1_1;
};