ee: init at 1.5.2 (#440047)

This commit is contained in:
isabel
2025-09-04 13:24:41 +01:00
committed by GitHub
+52
View File
@@ -0,0 +1,52 @@
{
lib,
stdenv,
nix-update-script,
fetchgit,
ncurses,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "ee";
version = "1.5.2";
src = fetchgit {
url = "https://git.freebsd.org/src.git";
tag = "release/14.3.0";
outputHash = "sha256-nMhHXeoam9VtUuhhi0eoGZfcW9zZhpYQKVYbkAbfgc0=";
rootDir = "contrib/ee";
};
passthru.updateScript = nix-update-script { };
buildInputs = [ ncurses ];
postPatch = ''
substituteInPlace create.make --replace-fail "/usr/include/curses.h" "${ncurses.dev}/include/ncurses.h"
substituteInPlace create.make --replace-fail "-lcurses" "-lncurses"
'';
NIX_CFLAGS_COMPILE = "-DHAS_UNISTD=1 -DHAS_STDLIB=1 -DHAS_SYS_WAIT=1";
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp ee $out/bin/ee
runHook postInstall
'';
meta = {
description = "classic curses text editor";
homepage = "https://man.freebsd.org/cgi/man.cgi?ee";
longDescription = ''
An easy to use text editor. Intended to be usable with little or no
instruction. Provides a terminal (curses based) interface. Features
pop-up menus. Born in HP-UX, included in FreeBSD.
'';
license = lib.licenses.bsd2;
platforms = lib.platforms.unix;
mainProgram = "ee";
};
})