biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / blockchains / clboss / default.nix
blob0cad0ed2ae54d441d2f7716f4d07879371665e51
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , autoconf-archive
5 , autoreconfHook
6 , pkg-config
7 , curlWithGnuTls
8 , libev
9 , sqlite
12 stdenv.mkDerivation rec {
13   pname = "clboss";
14   version = "0.13";
16   src = fetchFromGitHub {
17     owner = "ZmnSCPxj";
18     repo = "clboss";
19     rev = "v${version}";
20     hash = "sha256-NP9blymdqDXo/OtGLQg/MXK24PpPvCrzqXRdtfCvpfI=";
21   };
23   nativeBuildInputs = [ autoconf-archive autoreconfHook pkg-config libev curlWithGnuTls sqlite ];
25   enableParallelBuilding = true;
27   meta = with lib; {
28     description = "Automated C-Lightning Node Manager";
29     homepage = "https://github.com/ZmnSCPxj/clboss";
30     license = licenses.mit;
31     maintainers = with maintainers; [ prusnak ];
32     platforms = platforms.linux ++ platforms.darwin;
33     mainProgram = "clboss";
34   };