about summary refs log tree commit diff
path: root/pkgs/servers/icecream/default.nix
blob: e6691e29aa12643e442fa60988aa119edca5d4b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub, autoreconfHook, docbook2x, libarchive, libcap_ng, lzo, pkg-config, zstd, docbook_xml_dtd_45 }:

stdenv.mkDerivation rec {
  pname = "icecream";
  version = "1.4";

  src = fetchFromGitHub {
    owner = "icecc";
    repo = pname;
    rev = version;
    sha256 = "sha256-nBdUbWNmTxKpkgFM3qbooNQISItt5eNKtnnzpBGVbd4=";
  };
  enableParallelBuilding = true;

  nativeBuildInputs = [ autoreconfHook docbook2x pkg-config ];
  buildInputs = [ libarchive libcap_ng lzo zstd docbook_xml_dtd_45 ];

  meta = with lib; {
    description = "Distributed compiler with a central scheduler to share build load";
    inherit (src.meta) homepage;
    license = licenses.gpl2;
    maintainers = with maintainers; [ emantor ];
    platforms = with platforms; linux ++ darwin;
  };
}