2024-03-09 17:48:22 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, docbook2x, libarchive, libcap_ng, lzo, pkg-config, zstd, docbook_xml_dtd_45 }:
|
2020-04-04 15:29:01 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "icecream";
|
2024-03-09 17:48:22 +00:00
|
|
|
version = "1.4";
|
2020-04-04 15:29:01 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "icecc";
|
|
|
|
repo = pname;
|
2024-03-09 17:48:22 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-nBdUbWNmTxKpkgFM3qbooNQISItt5eNKtnnzpBGVbd4=";
|
2020-04-04 15:29:01 +00:00
|
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2024-03-09 17:48:22 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook docbook2x pkg-config ];
|
2020-04-04 15:29:01 +00:00
|
|
|
buildInputs = [ libarchive libcap_ng lzo zstd docbook_xml_dtd_45 ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-04 15:29:01 +00:00
|
|
|
description = "Distributed compiler with a central scheduler to share build load";
|
|
|
|
inherit (src.meta) homepage;
|
2024-05-23 08:44:51 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-04-04 15:29:01 +00:00
|
|
|
maintainers = with maintainers; [ emantor ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
};
|
|
|
|
}
|