about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-11-04 20:02:29 +0000
committerVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-11-05 11:56:03 +0000
commitdc348b84451f5c97df8ac8de50b403f43d676ff2 (patch)
tree66e19c8efcb042e5035872bcab73cf9e37b02c8e /pkgs
parentd589dcc0e9a581536f80fe6a44d73c27e69bb507 (diff)
cddblib: replace texlive.combined.scheme-small with texliveSmall
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/cddlib/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/cddlib/default.nix b/pkgs/development/libraries/cddlib/default.nix
index e0d6149362cc9..968f32a0af598 100644
--- a/pkgs/development/libraries/cddlib/default.nix
+++ b/pkgs/development/libraries/cddlib/default.nix
@@ -2,7 +2,7 @@
 , fetchFromGitHub
 , gmp
 , autoreconfHook
-, texlive
+, texliveSmall
 }:
 
 stdenv.mkDerivation rec {
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
   buildInputs = [gmp];
   nativeBuildInputs = [
     autoreconfHook
-    texlive.combined.scheme-small # for building the documentation
+    texliveSmall # for building the documentation
   ];
   # No actual checks yet (2018-05-05), but maybe one day.
   # Requested here: https://github.com/cddlib/cddlib/issues/25