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 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-05-30 12:09:55 -07:00
version = "0.13A";
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-05-30 12:09:55 -07:00
hash = "sha256-LTDJrm9Mk4j7Z++tKJKawEurgF1TnYuIoj+APbDHll4=";
2020-12-21 02:50:50 -08:00
};
nativeBuildInputs = [ pkgconfig libev curlWithGnuTLS sqlite ];
enableParallelBuilding = true;
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;
maintainers = with maintainers; [ nixbitcoin ];
2020-12-21 02:50:50 -08:00
platforms = platforms.linux;
};
}