diff --git a/pkgs/clboss/default.nix b/pkgs/clboss/default.nix deleted file mode 100644 index 544c70e..0000000 --- a/pkgs/clboss/default.nix +++ /dev/null @@ -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; - }; -} diff --git a/pkgs/default.nix b/pkgs/default.nix index 327ed1a..66b92ad 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -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 { }; diff --git a/pkgs/pinned.nix b/pkgs/pinned.nix index 9f59bc0..aad30b4 100644 --- a/pkgs/pinned.nix +++ b/pkgs/pinned.nix @@ -17,6 +17,7 @@ pkgs: pkgsUnstable: nbxplorer; inherit (pkgsUnstable) + clboss fulcrum lnd;