nixpkgs/pkgs/applications/editors/nedit/default.nix

34 lines
921 B
Nix
Raw Normal View History

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