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

33 lines
867 B
Nix
Raw Normal View History

{ stdenv, fetchurl, xlibsWrapper, motif, libXpm }:
2015-03-26 21:09:56 +00:00
stdenv.mkDerivation rec {
2017-03-19 22:18:26 +00:00
name = "nedit-${version}";
version = "5.7";
src = fetchurl {
2015-03-26 21:09:56 +00:00
url = "mirror://sourceforge/nedit/nedit-source/${name}-src.tar.gz";
2017-03-19 22:18:26 +00:00
sha256 = "0ym1zhjx9976rf2z5nr7dj4mjkxcicimhs686snjhdcpzxwsrndd";
};
2016-07-28 01:50:29 +00:00
hardeningDisable = [ "format" ];
2017-03-19 22:18:26 +00:00
nativeBuildInputs = [ xlibsWrapper ];
buildInputs = [ motif libXpm ];
2016-07-31 18:54:10 +00:00
buildFlags = if stdenv.isLinux then "linux" else
# the linux config works fine on darwin too!
if stdenv.isDarwin then "linux" else "";
2015-03-26 21:09:56 +00:00
NIX_CFLAGS_COMPILE="-DBUILD_UNTESTED_NEDIT -L${motif}/lib";
installPhase = ''
mkdir -p $out/bin
cp -p source/nedit source/nc $out/bin
'';
2016-07-31 18:54:10 +00:00
meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/nedit;
2016-07-31 18:54:10 +00:00
platforms = with platforms; linux ++ darwin;
};
}