mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
icecream: init at 2020-04-15
This commit is contained in:
parent
007126eef7
commit
842ad7258a
25
pkgs/servers/icecream/default.nix
Normal file
25
pkgs/servers/icecream/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, docbook2x, libarchive, libcap_ng, lzo, zstd, docbook_xml_dtd_45 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "icecream";
|
||||
version = "2020-04-15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "icecc";
|
||||
repo = pname;
|
||||
rev = "c370c4d701d05e1872d44d1c1642a774a7f25807";
|
||||
sha256 = "0ld2ihd39irlk4wshpbw7inmgyl3x0gbkgsy10izcm1wwfc0x2ac";
|
||||
};
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook docbook2x ];
|
||||
buildInputs = [ libarchive libcap_ng lzo zstd docbook_xml_dtd_45 ];
|
||||
|
||||
meta = with stdenv.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;
|
||||
};
|
||||
}
|
@ -16574,6 +16574,8 @@ in
|
||||
|
||||
hydron = callPackage ../servers/hydron { };
|
||||
|
||||
icecream = callPackage ../servers/icecream { };
|
||||
|
||||
icingaweb2 = callPackage ../servers/icingaweb2 { };
|
||||
icingaweb2Modules = {
|
||||
theme-april = callPackage ../servers/icingaweb2/theme-april { };
|
||||
|
Loading…
Reference in New Issue
Block a user