nixpkgs/pkgs/by-name/ft/fte/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

60 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchurl,
unzip,
perl,
libX11,
libXpm,
gpm,
ncurses,
slang,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "fte";
version = "0.50.02";
ftesrc = fetchurl {
url = "mirror://sourceforge/fte/fte-20110708-src.zip";
hash = "sha256-1jEcVC0/DyiQpUpmHDtnIo4nuJS0Fk6frynwFPJUSZ4=";
};
ftecommon = fetchurl {
url = "mirror://sourceforge/fte/fte-20110708-common.zip";
hash = "sha256-WEEVeLMZWHZfQtK/Kbeu3Z+RaVXCwZyWkJocA+Akavc=";
};
src = [
finalAttrs.ftesrc
finalAttrs.ftecommon
];
nativeBuildInputs = [ unzip ];
buildInputs = [
perl
libX11
libXpm
gpm
ncurses
slang
];
hardeningDisable = [ "all" ];
enableParallelBuilding = true;
env.NIX_CFLAGS_COMPILE = "-DHAVE_STRLCAT -DHAVE_STRLCPY";
installFlags = [ "INSTALL_NONROOT=1" ];
# not setting it cause fte to not find xfte
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = {
description = "Free text editor for developers";
homepage = "https://fte.sourceforge.net/";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ sigmanificient ];
platforms = lib.platforms.all;
};
})