2021-03-22 06:38:32 -07:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, curl, libev, sqlite }:
|
2020-12-21 02:50:50 -08:00
|
|
|
|
|
|
|
let
|
2021-12-08 04:14:34 -08:00
|
|
|
curlWithGnuTLS = curl.override { gnutlsSupport = true; opensslSupport = false; };
|
2020-12-21 02:50:50 -08:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "clboss";
|
2022-04-30 04:08:50 -07:00
|
|
|
version = "0.12";
|
2020-12-21 02:50:50 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-11 05:39:08 -07:00
|
|
|
url = "https://github.com/ZmnSCPxj/clboss/releases/download/${version}/clboss-${version}.tar.gz";
|
2022-04-30 04:08:50 -07:00
|
|
|
hash = "sha256-UZcSfbpp3vPsD3CDukp+r5Z60h0UEWTduqF4DhJ+H2U=";
|
2020-12-21 02:50:50 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig libev curlWithGnuTLS sqlite ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-03-22 06:38:32 -07:00
|
|
|
meta = with lib; {
|
2020-12-21 02:50:50 -08:00
|
|
|
description = "Automated C-Lightning Node Manager";
|
|
|
|
homepage = "https://github.com/ZmnSCPxj/clboss";
|
|
|
|
license = licenses.mit;
|
2021-12-14 10:51:23 -08:00
|
|
|
maintainers = with maintainers; [ nixbitcoin ];
|
2020-12-21 02:50:50 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|