Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / icecream / default.nix
blob20c782e70238223e85c43e57d7220e26d6b7d337
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.gpl2Plus;
22     maintainers = with maintainers; [ emantor ];
23     platforms = with platforms; linux ++ darwin;
24   };