Fix big-parallel usage
requiredSystemFeatures is not a meta attribute but a derivation attribute. So "big-parallel" was being ignored on e.g. chromium, causing it to be built (and timing out) on slow machines. http://hydra.nixos.org/build/45819778#tabs-buildsteps
This commit is contained in:
parent
586ceaf718
commit
b4f401104d
|
@ -42,6 +42,8 @@ mkChromiumDerivation (base: rec {
|
||||||
|
|
||||||
passthru = { inherit sandboxExecutableName; };
|
passthru = { inherit sandboxExecutableName; };
|
||||||
|
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "An open source web browser from Google";
|
description = "An open source web browser from Google";
|
||||||
homepage = http://www.chromium.org/;
|
homepage = http://www.chromium.org/;
|
||||||
|
@ -49,6 +51,5 @@ mkChromiumDerivation (base: rec {
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
hydraPlatforms = if channel == "stable" then ["x86_64-linux"] else [];
|
hydraPlatforms = if channel == "stable" then ["x86_64-linux"] else [];
|
||||||
requiredSystemFeatures = [ "big-parallel" ];
|
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
@ -251,6 +251,8 @@ in stdenv.mkDerivation rec {
|
||||||
inherit srcs;
|
inherit srcs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Comprehensive, professional-quality productivity suite, a variant of openoffice.org";
|
description = "Comprehensive, professional-quality productivity suite, a variant of openoffice.org";
|
||||||
homepage = http://libreoffice.org/;
|
homepage = http://libreoffice.org/;
|
||||||
|
@ -258,6 +260,5 @@ in stdenv.mkDerivation rec {
|
||||||
maintainers = with maintainers; [ viric raskin ];
|
maintainers = with maintainers; [ viric raskin ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
hydraPlatforms = [];
|
hydraPlatforms = [];
|
||||||
requiredSystemFeatures = [ "big-parallel" ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -254,12 +254,13 @@ in stdenv.mkDerivation rec {
|
||||||
inherit srcs;
|
inherit srcs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Comprehensive, professional-quality productivity suite (Still/stable release)";
|
description = "Comprehensive, professional-quality productivity suite (Still/stable release)";
|
||||||
homepage = http://libreoffice.org/;
|
homepage = http://libreoffice.org/;
|
||||||
license = licenses.lgpl3;
|
license = licenses.lgpl3;
|
||||||
maintainers = with maintainers; [ viric raskin ];
|
maintainers = with maintainers; [ viric raskin ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
requiredSystemFeatures = [ "big-parallel" ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,12 +35,13 @@ in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://wiki.gnome.org/Apps/Evolution;
|
homepage = https://wiki.gnome.org/Apps/Evolution;
|
||||||
description = "Personal information management application that provides integrated mail, calendaring and address book functionality";
|
description = "Personal information management application that provides integrated mail, calendaring and address book functionality";
|
||||||
maintainers = gnome3.maintainers;
|
maintainers = gnome3.maintainers;
|
||||||
license = licenses.lgpl2Plus;
|
license = licenses.lgpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
requiredSystemFeatures = [ "big-parallel" ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,12 +35,13 @@ in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://wiki.gnome.org/Apps/Evolution;
|
homepage = https://wiki.gnome.org/Apps/Evolution;
|
||||||
description = "Personal information management application that provides integrated mail, calendaring and address book functionality";
|
description = "Personal information management application that provides integrated mail, calendaring and address book functionality";
|
||||||
maintainers = gnome3.maintainers;
|
maintainers = gnome3.maintainers;
|
||||||
license = licenses.lgpl2Plus;
|
license = licenses.lgpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
requiredSystemFeatures = [ "big-parallel" ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue