biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / icecream / default.nix
blobe6691e29aa12643e442fa60988aa119edca5d4b5
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, docbook2x, libarchive, libcap_ng, lzo, pkg-config, zstd, docbook_xml_dtd_45 }:
3 stdenv.mkDerivation rec {
4   pname = "icecream";
5   version = "1.4";
7   src = fetchFromGitHub {
8     owner = "icecc";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-nBdUbWNmTxKpkgFM3qbooNQISItt5eNKtnnzpBGVbd4=";
12   };
13   enableParallelBuilding = true;
15   nativeBuildInputs = [ autoreconfHook docbook2x pkg-config ];
16   buildInputs = [ libarchive libcap_ng lzo zstd docbook_xml_dtd_45 ];
18   meta = with lib; {
19     description = "Distributed compiler with a central scheduler to share build load";
20     inherit (src.meta) homepage;
21     license = licenses.gpl2;
22     maintainers = with maintainers; [ emantor ];
23     platforms = with platforms; linux ++ darwin;
24   };