nix-bitcoin/pkgs/clboss/default.nix

27 lines
762 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkgconfig, curl, libev, sqlite }:
2020-12-21 10:50:50 +00:00
let
2021-12-08 12:14:34 +00:00
curlWithGnuTLS = curl.override { gnutlsSupport = true; opensslSupport = false; };
2020-12-21 10:50:50 +00:00
in
stdenv.mkDerivation rec {
pname = "clboss";
2022-04-25 09:18:57 +00:00
version = "0.11E";
2020-12-21 10:50:50 +00:00
src = fetchurl {
2021-04-11 12:39:08 +00:00
url = "https://github.com/ZmnSCPxj/clboss/releases/download/${version}/clboss-${version}.tar.gz";
2022-04-25 09:18:57 +00:00
hash = "sha256-TDDD5tM3aNRxgSP/6rVM+4bX9zwcErZ0yQpQOjNU1FM=";
2020-12-21 10:50:50 +00:00
};
nativeBuildInputs = [ pkgconfig libev curlWithGnuTLS sqlite ];
enableParallelBuilding = true;
meta = with lib; {
2020-12-21 10:50:50 +00:00
description = "Automated C-Lightning Node Manager";
homepage = "https://github.com/ZmnSCPxj/clboss";
license = licenses.mit;
maintainers = with maintainers; [ nixbitcoin ];
2020-12-21 10:50:50 +00:00
platforms = platforms.linux;
};
}