nixpkgs/pkgs/servers/icecream/default.nix
Rouven Czerwinski 292e4a4154
icecream: 2020-04-15 -> 1.4 (#288524)
Bump to latest release.
2024-03-09 18:48:22 +01:00

26 lines
796 B
Nix

{ 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;
};
}