nixpkgs/pkgs/applications/editors/qemacs/default.nix
2023-05-15 18:02:25 +02:00

56 lines
1.2 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, buildPackages
, which
, texi2html
, enableX11 ? true
, libX11, libXext, libXv, libpng
}:
stdenv.mkDerivation rec {
pname = "qemacs";
version = "6.1.1b";
src = fetchFromGitHub {
owner = "qemacs";
repo = "qemacs";
rev = "06b3d373bbcc52b51ccb438bf3cab38a49492ff0";
hash = "sha256-Z4BbA8W3bYdw+cHgI24r55OP1Olr3GwKLlfRxjy45i8=";
};
postPatch = ''
substituteInPlace Makefile --replace \
'$(INSTALL) -m 755 -s' \
'$(INSTALL) -m 755 -s --strip-program=${stdenv.cc.targetPrefix}strip'
'';
nativeBuildInputs = [ which texi2html ];
buildInputs = lib.optionals enableX11 [ libpng libX11 libXext libXv ];
enableParallelBuilding = true;
configureFlags = [
"--cross-prefix=${stdenv.cc.targetPrefix}"
] ++ lib.optionals (!enableX11) [
"--disable-x11"
];
makeFlags = [
# is actually used as BUILD_CC
"HOST_CC=${buildPackages.stdenv.cc}/bin/cc"
"CC=${stdenv.cc.targetPrefix}cc"
];
preInstall = ''
mkdir -p $out/bin $out/man
'';
meta = with lib; {
homepage = "https://bellard.org/qemacs/";
description = "Very small but powerful UNIX editor";
license = licenses.lgpl2Only;
maintainers = with maintainers; [ iblech ];
};
}