mirror of
https://github.com/fort-nix/nix-bitcoin.git
synced 2024-11-22 13:14:15 +03:00
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: ACK98692a35c1
Tree-SHA512: e763e7c7614fc2f8d43fd9087fa003c2f22babb71b725f9bfbe588eadf8abf7fd1605f73c32ee994e559aa5ad4e7c8e1d8ca94066a22ac149277d6502863125d
This commit is contained in:
commit
9a2f08205d
@ -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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
@ -17,6 +17,7 @@ pkgs: pkgsUnstable:
|
||||
nbxplorer;
|
||||
|
||||
inherit (pkgsUnstable)
|
||||
clboss
|
||||
fulcrum
|
||||
lnd;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user