27 lines
762 B
Nix
27 lines
762 B
Nix
{ lib, stdenv, fetchurl, pkgconfig, curl, libev, sqlite }:
|
|
|
|
let
|
|
curlWithGnuTLS = curl.override { gnutlsSupport = true; opensslSupport = false; };
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "clboss";
|
|
version = "0.13A";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ZmnSCPxj/clboss/releases/download/${version}/clboss-${version}.tar.gz";
|
|
hash = "sha256-LTDJrm9Mk4j7Z++tKJKawEurgF1TnYuIoj+APbDHll4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig libev curlWithGnuTLS sqlite ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Automated C-Lightning Node Manager";
|
|
homepage = "https://github.com/ZmnSCPxj/clboss";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nixbitcoin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|