mirror of
https://github.com/fort-nix/nix-bitcoin.git
synced 2024-11-22 22:33:46 +03:00
clboss: use pkg from nixpkgs (0.13.1 -> 0.13.2)
This commit is contained in:
parent
6e208d6a7b
commit
98692a35c1
@ -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…
Reference in New Issue
Block a user