nixpkgs/pkgs/servers/icecream/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
796 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, docbook2x, libarchive, libcap_ng, lzo, pkg-config, zstd, docbook_xml_dtd_45 }:
2020-04-04 17:29:01 +02:00
stdenv.mkDerivation rec {
pname = "icecream";
version = "1.4";
2020-04-04 17:29:01 +02:00
src = fetchFromGitHub {
owner = "icecc";
repo = pname;
rev = version;
sha256 = "sha256-nBdUbWNmTxKpkgFM3qbooNQISItt5eNKtnnzpBGVbd4=";
2020-04-04 17:29:01 +02:00
};
enableParallelBuilding = true;
nativeBuildInputs = [ autoreconfHook docbook2x pkg-config ];
2020-04-04 17:29:01 +02:00
buildInputs = [ libarchive libcap_ng lzo zstd docbook_xml_dtd_45 ];
meta = with lib; {
2020-04-04 17:29:01 +02:00
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;
};
}