Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / blockchains / clboss / default.nix
blobc6ffe8e07f98356bb34e4dec7f1960d2aa29670f
1 { lib
2 , stdenv
3 , fetchurl
4 , pkg-config
5 , curlWithGnuTls
6 , libev
7 , sqlite
8 }:
10 stdenv.mkDerivation rec {
11   pname = "clboss";
12   version = "0.12";
14   src = fetchurl {
15     url = "https://github.com/ZmnSCPxj/clboss/releases/download/${version}/clboss-${version}.tar.gz";
16     hash = "sha256-UZcSfbpp3vPsD3CDukp+r5Z60h0UEWTduqF4DhJ+H2U=";
17   };
19   nativeBuildInputs = [ pkg-config libev curlWithGnuTls sqlite ];
21   enableParallelBuilding = true;
23   meta = with lib; {
24     description = "Automated C-Lightning Node Manager";
25     homepage = "https://github.com/ZmnSCPxj/clboss";
26     license = licenses.mit;
27     maintainers = with maintainers; [ prusnak ];
28     platforms = platforms.linux ++ platforms.darwin;
29   };