Merge fort-nix/nix-bitcoin#728: clboss: use pkg from nixpkgs

98692a35c1 clboss: use pkg from nixpkgs (0.13.1 -> 0.13.2) (Erik Arvstedt)

Pull request description:

ACKs for top commit:
  jonasnick:
    ACK 98692a35c1

Tree-SHA512: e763e7c7614fc2f8d43fd9087fa003c2f22babb71b725f9bfbe588eadf8abf7fd1605f73c32ee994e559aa5ad4e7c8e1d8ca94066a22ac149277d6502863125d
This commit is contained in:
Jonas Nick 2024-08-16 14:35:56 +00:00
commit 9a2f08205d
No known key found for this signature in database
GPG Key ID: 4861DBF262123605
3 changed files with 1 additions and 37 deletions

View File

@ -1,36 +0,0 @@
{ lib, stdenv, fetchFromGitHub, autoconf-archive, autoreconfHook, pkg-config, curl, libev, sqlite }:
let
curlWithGnuTLS = curl.override { gnutlsSupport = true; opensslSupport = false; };
in
stdenv.mkDerivation rec {
pname = "clboss";
version = "0.13.1";
src = fetchFromGitHub {
owner = "ZmnSCPxj";
repo = "clboss";
rev = "v${version}";
hash = "sha256-DQvcf+y73QQYQanEvbOCOgwQzvNOXS1ZY+hVvS6N+G0=";
};
nativeBuildInputs = [
autoreconfHook
autoconf-archive
pkg-config
libev
curlWithGnuTLS
sqlite
];
enableParallelBuilding = true;
meta = with lib; {
description = "Automated C-Lightning Node Manager";
homepage = "https://github.com/ZmnSCPxj/clboss";
changelog = "https://github.com/ZmnSCPxj/clboss/blob/v${version}/ChangeLog";
license = licenses.mit;
maintainers = with maintainers; [ nixbitcoin ];
platforms = platforms.linux;
};
}

View File

@ -11,7 +11,6 @@ in
}:
let self = {
clightning-rest = pkgs.callPackage ./clightning-rest { inherit (self) fetchNodeModules; };
clboss = pkgs.callPackage ./clboss { };
clightning-plugins = pkgs.recurseIntoAttrs (import ./clightning-plugins pkgs self.nbPython3Packages);
joinmarket = pkgs.callPackage ./joinmarket { inherit (self) nbPython3PackagesJoinmarket; };
lndinit = pkgs.callPackage ./lndinit { };

View File

@ -17,6 +17,7 @@ pkgs: pkgsUnstable:
nbxplorer;
inherit (pkgsUnstable)
clboss
fulcrum
lnd;