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

28 lines
606 B
Nix
Raw Normal View History

{ stdenv, fetchurl, xlibsWrapper, motif, libXpm }:
assert stdenv.isLinux;
2015-03-26 21:09:56 +00:00
stdenv.mkDerivation rec {
name = "nedit-5.6";
src = fetchurl {
2015-03-26 21:09:56 +00:00
url = "mirror://sourceforge/nedit/nedit-source/${name}-src.tar.gz";
sha256 = "023hwpqc57mnzvg6p7jda6193afgjzxzajlhwhqvk3jq2kdv6zna";
};
buildInputs = [ xlibsWrapper motif libXpm ];
buildFlags = if stdenv.isLinux 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
'';
meta = {
homepage = http://www.nedit.org;
};
}