summary refs log tree commit diff
path: root/pkgs/applications/editors/nedit/default.nix
blob: a15b557f0e57452f7a88f201e40d20d0a459744d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl, xlibsWrapper, motif, libXpm }:

stdenv.mkDerivation rec {
  name = "nedit-${version}";
  version = "5.7";
  
  src = fetchurl {
    url = "mirror://sourceforge/nedit/nedit-source/${name}-src.tar.gz";
    sha256 = "0ym1zhjx9976rf2z5nr7dj4mjkxcicimhs686snjhdcpzxwsrndd";
  };

  hardeningDisable = [ "format" ];

  nativeBuildInputs = [ xlibsWrapper ];
  buildInputs = [ motif libXpm ];

  buildFlags = if stdenv.isLinux then "linux" else
               # the linux config works fine on darwin too!
               if stdenv.isDarwin then "linux" else "";

  NIX_CFLAGS_COMPILE="-DBUILD_UNTESTED_NEDIT -L${motif}/lib";

  installPhase = ''
    mkdir -p $out/bin
    cp -p source/nedit source/nc $out/bin
  '';

  meta = with stdenv.lib; {
    homepage = http://sourceforge.net/projects/nedit;
    platforms = with platforms; linux ++ darwin;
  };
}