7fbcc56260
This is all work of Marc Weber <marco-oweber@gmx.de>, except for a few nitpicks. Tested space blowup: IMHO negligible to headers and similar stuff, e.g. the firefox closure (reported by du) grows from 560 to 579 MB. Saving space should be handled separately, e.g. we have the multiple-outputs branch.
21 lines
644 B
Nix
21 lines
644 B
Nix
{ stdenv, fetchurl, pkgconfig, python, libxml2Python, libxslt, which, libX11, gnome3
|
|
, intltool, gnome_doc_utils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
majorVersion = "3.5";
|
|
minorVersion = "3";
|
|
name = "gnome-desktop-${majorVersion}.${minorVersion}";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-desktop/${majorVersion}/${name}.tar.xz";
|
|
sha256 = "1nrqcp1p5cxhfjjy5hjpvkqmzsgl2353a08fg0b11c932v95bsba";
|
|
};
|
|
|
|
configureFlags = "--disable-scrollkeeper";
|
|
buildInputs = [ pkgconfig python libxml2Python libxslt which libX11
|
|
gnome3.gtk gnome3.glib intltool gnome_doc_utils ];
|
|
}
|