release-lib: Remove unused allowTexliveBuilds option

This is dead code since the old monolithic TeXLive was dropped in
da421bc75f.
This commit is contained in:
Tuomas Tynkkynen
2016-09-11 01:13:49 +03:00
parent ffddcc8807
commit 628c86c51a
-2
View File
@@ -1,6 +1,5 @@
{ supportedSystems { supportedSystems
, packageSet ? (import ../..) , packageSet ? (import ../..)
, allowTexliveBuilds ? false
, scrubJobs ? true , scrubJobs ? true
}: }:
@@ -11,7 +10,6 @@ rec {
# Ensure that we don't build packages marked as unfree. # Ensure that we don't build packages marked as unfree.
allPackages = args: packageSet (args // { allPackages = args: packageSet (args // {
config.allowUnfree = false; config.allowUnfree = false;
config.allowTexliveBuilds = allowTexliveBuilds;
config.inHydra = true; config.inHydra = true;
}); });