depot/pkgs/by-name/ca/cabal-cli/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

33 lines
684 B
Nix

{
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 ];
};
}