2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, xlibsWrapper, motif, libXpm }:
|
2005-12-03 01:04:13 +01:00
|
|
|
|
2015-03-26 22:09:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "nedit";
|
2017-03-19 23:18:26 +01:00
|
|
|
version = "5.7";
|
2019-10-29 23:21:22 +01:00
|
|
|
|
2005-12-03 01:04:13 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/nedit/nedit-source/${pname}-${version}-src.tar.gz";
|
2017-03-19 23:18:26 +01:00
|
|
|
sha256 = "0ym1zhjx9976rf2z5nr7dj4mjkxcicimhs686snjhdcpzxwsrndd";
|
2005-12-03 01:04:13 +01:00
|
|
|
};
|
|
|
|
|
2016-07-28 03:50:29 +02:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2017-03-19 23:18:26 +01:00
|
|
|
nativeBuildInputs = [ xlibsWrapper ];
|
|
|
|
buildInputs = [ motif libXpm ];
|
2005-12-03 01:04:13 +01:00
|
|
|
|
2019-10-29 23:21:22 +01:00
|
|
|
# the linux config works fine on darwin too!
|
2021-01-15 14:21:58 +01:00
|
|
|
buildFlags = lib.optional (stdenv.isLinux || stdenv.isDarwin) "linux";
|
2008-01-30 20:49:42 +01:00
|
|
|
|
2015-03-26 22:09:56 +01:00
|
|
|
NIX_CFLAGS_COMPILE="-DBUILD_UNTESTED_NEDIT -L${motif}/lib";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp -p source/nedit source/nc $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-10-08 20:54:38 +02:00
|
|
|
homepage = "https://sourceforge.net/projects/nedit";
|
|
|
|
description = "A fast, compact Motif/X11 plain text editor";
|
2016-07-31 20:54:10 +02:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2018-08-06 12:38:10 +02:00
|
|
|
license = licenses.gpl2;
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
2005-12-03 01:04:13 +01:00
|
|
|
}
|