From 628c86c51a1321e68ec724d3feeb12aac34d3e32 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 11 Sep 2016 01:13:49 +0300 Subject: [PATCH] release-lib: Remove unused allowTexliveBuilds option This is dead code since the old monolithic TeXLive was dropped in da421bc75f98c1b19f214a3b6b7cda07dc4c088b. --- pkgs/top-level/release-lib.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/top-level/release-lib.nix b/pkgs/top-level/release-lib.nix index b352ec0fe64..34788736edd 100644 --- a/pkgs/top-level/release-lib.nix +++ b/pkgs/top-level/release-lib.nix @@ -1,6 +1,5 @@ { supportedSystems , packageSet ? (import ../..) -, allowTexliveBuilds ? false , scrubJobs ? true }: @@ -11,7 +10,6 @@ rec { # Ensure that we don't build packages marked as unfree. allPackages = args: packageSet (args // { config.allowUnfree = false; - config.allowTexliveBuilds = allowTexliveBuilds; config.inHydra = true; });