Merge fort-nix/nix-bitcoin#728: clboss: use pkg from nixpkgs
98692a35c1clboss: use pkg from nixpkgs (0.13.1 -> 0.13.2) (Erik Arvstedt) Pull request description: ACKs for top commit: jonasnick: ACK98692a35c1Tree-SHA512: e763e7c7614fc2f8d43fd9087fa003c2f22babb71b725f9bfbe588eadf8abf7fd1605f73c32ee994e559aa5ad4e7c8e1d8ca94066a22ac149277d6502863125d
This commit is contained in:
commit
9a2f08205d
3 changed files with 1 additions and 37 deletions
|
|
@ -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 = {
|
let self = {
|
||||||
clightning-rest = pkgs.callPackage ./clightning-rest { inherit (self) fetchNodeModules; };
|
clightning-rest = pkgs.callPackage ./clightning-rest { inherit (self) fetchNodeModules; };
|
||||||
clboss = pkgs.callPackage ./clboss { };
|
|
||||||
clightning-plugins = pkgs.recurseIntoAttrs (import ./clightning-plugins pkgs self.nbPython3Packages);
|
clightning-plugins = pkgs.recurseIntoAttrs (import ./clightning-plugins pkgs self.nbPython3Packages);
|
||||||
joinmarket = pkgs.callPackage ./joinmarket { inherit (self) nbPython3PackagesJoinmarket; };
|
joinmarket = pkgs.callPackage ./joinmarket { inherit (self) nbPython3PackagesJoinmarket; };
|
||||||
lndinit = pkgs.callPackage ./lndinit { };
|
lndinit = pkgs.callPackage ./lndinit { };
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@ pkgs: pkgsUnstable:
|
||||||
nbxplorer;
|
nbxplorer;
|
||||||
|
|
||||||
inherit (pkgsUnstable)
|
inherit (pkgsUnstable)
|
||||||
|
clboss
|
||||||
fulcrum
|
fulcrum
|
||||||
lnd;
|
lnd;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue