From 10ce483054aa2da85eb40e043b7cef6e2b6ebc3d Mon Sep 17 00:00:00 2001 From: geri1701 Date: Wed, 10 May 2023 00:30:07 +0200 Subject: [PATCH] ne: fix build --- pkgs/applications/editors/ne/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/ne/default.nix b/pkgs/applications/editors/ne/default.nix index 07bbe3c18ea1..f783dfea81c2 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 ]; }; }