cabal-cli: init at 15.0.2

This commit is contained in:
kototama
2024-10-18 12:29:54 +02:00
parent aa788352f8
commit c3ea05dab6
+33
View File
@@ -0,0 +1,33 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
let
version = "15.0.2";
pname = "cabal-cli";
in
buildNpmPackage {
inherit version pname;
src = fetchFromGitHub {
owner = "cabal-club";
repo = "cabal-cli";
rev = "v${version}";
hash = "sha256-DZ+F+pgPc8WuiBhLgxNO5es5lA996fJdvZyg6QjfrHg=";
};
npmDepsHash = "sha256-Oqyx6pytDrYg1JbHawKxnnWEJxaFUaM9LcREizh3LFQ=";
dontNpmBuild = true;
env.NODE_OPTIONS = "--openssl-legacy-provider";
meta = {
description = "Terminal client for Cabal, the p2p chat platform";
homepage = "https://cabal.chat";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ kototama ];
};
}