about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2023-05-10 07:08:02 +0100
committerGitHub <noreply@github.com>2023-05-10 07:08:02 +0100
commit5ddfee23d944888a5c9d9ef8f7b512269c5774e7 (patch)
treed57996b2f0208300777ecafccea4ab559e64ef5d /pkgs/applications
parent250a59faefad81d77a8c0019c24f33b9cab8539e (diff)
parent10ce483054aa2da85eb40e043b7cef6e2b6ebc3d (diff)
Merge pull request #230968 from geri1701/ne
ne: fix build
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/ne/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/editors/ne/default.nix b/pkgs/applications/editors/ne/default.nix
index 07bbe3c18ea1d..f783dfea81c23 100644
--- a/pkgs/applications/editors/ne/default.nix
+++ b/pkgs/applications/editors/ne/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, ncurses, texinfo, texlive, perl, ghostscript }:
+{ lib, stdenv, fetchFromGitHub, ncurses, texinfo6, texlive, 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 texinfo perl ghostscript ];
+  nativeBuildInputs = [ texlive.combined.scheme-medium texinfo6 perl ghostscript ];
   buildInputs = [ ncurses ];
 
   makeFlags = [ "PREFIX=${placeholder "out"}" ];
@@ -32,5 +32,6 @@ stdenv.mkDerivation rec {
     '';
     license = licenses.gpl3;
     platforms = platforms.unix;
+    maintainers = with maintainers; [ geri1701 ];
   };
 }