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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
879 B
Nix
Raw Normal View History

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