asl: replace texlive.combined.scheme-medium with texliveMedium

+3 -5
+2 -2
pkgs/development/compilers/asl/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchzip 4 - , tex 4 + , texliveMedium 5 5 , buildDocs ? false 6 6 }: 7 7 ··· 17 17 18 18 outputs = [ "out" "doc" "man" ]; 19 19 20 - nativeBuildInputs = lib.optionals buildDocs [ tex ]; 20 + nativeBuildInputs = lib.optionals buildDocs [ texliveMedium ]; 21 21 22 22 postPatch = lib.optionalString (!buildDocs) '' 23 23 substituteInPlace Makefile --replace "all: binaries docs" "all: binaries"
+1 -3
pkgs/top-level/all-packages.nix
··· 15558 15558 15559 15559 as31 = callPackage ../development/compilers/as31 { }; 15560 15560 15561 - asl = callPackage ../development/compilers/asl { 15562 - tex = texlive.combined.scheme-medium; 15563 - }; 15561 + asl = callPackage ../development/compilers/asl { }; 15564 15562 15565 15563 aspectj = callPackage ../development/compilers/aspectj { }; 15566 15564