about summary refs log tree commit diff
path: root/pkgs/applications/editors/ne
diff options
context:
space:
mode:
authorVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-11-04 20:02:28 +0000
committerVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-11-05 11:56:02 +0000
commit0ef5f56c469f23a3b9b5bfcf41d109c9f26d29bf (patch)
tree53feb37bc3c47295cdb3d8492bb5996d3a646cb8 /pkgs/applications/editors/ne
parent7a945b3874c2e28ce934ef33a18b6cab33362f8b (diff)
ne: replace texlive.combined.scheme-medium with texliveMedium
Diffstat (limited to 'pkgs/applications/editors/ne')
-rw-r--r--pkgs/applications/editors/ne/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/ne/default.nix b/pkgs/applications/editors/ne/default.nix
index e8cb1a572f70c..e246185e2a19d 100644
--- a/pkgs/applications/editors/ne/default.nix
+++ b/pkgs/applications/editors/ne/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, ncurses, texinfo6, texlive, perl, ghostscript }:
+{ lib, stdenv, fetchFromGitHub, ncurses, texinfo6, texliveMedium, perl, ghostscript }:
 
 stdenv.mkDerivation rec {
   pname = "ne";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
     substituteInPlace src/makefile --replace "-lcurses" "-lncurses"
   '';
 
-  nativeBuildInputs = [ texlive.combined.scheme-medium texinfo6 perl ghostscript ];
+  nativeBuildInputs = [ texliveMedium texinfo6 perl ghostscript ];
   buildInputs = [ ncurses ];
 
   makeFlags = [ "PREFIX=${placeholder "out"}" ];