summary refs log tree commit diff
path: root/pkgs/applications/editors/nedit
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-19 17:18:26 -0500
committerndowens <ndowens04@gmail.com>2017-03-19 17:18:26 -0500
commit8ab037e0b5aec850db9025478f78f318e4979b60 (patch)
tree26ddf652c257c65661c2f34c0098fbf09b643eec /pkgs/applications/editors/nedit
parentb00bfb0401347637e512ef56acb4e34c266209b8 (diff)
downloadnixpkgs-8ab037e0b5aec850db9025478f78f318e4979b60.tar
nixpkgs-8ab037e0b5aec850db9025478f78f318e4979b60.tar.gz
nixpkgs-8ab037e0b5aec850db9025478f78f318e4979b60.tar.bz2
nixpkgs-8ab037e0b5aec850db9025478f78f318e4979b60.tar.lz
nixpkgs-8ab037e0b5aec850db9025478f78f318e4979b60.tar.xz
nixpkgs-8ab037e0b5aec850db9025478f78f318e4979b60.tar.zst
nixpkgs-8ab037e0b5aec850db9025478f78f318e4979b60.zip
nedit: 5.6a -> 5.7
Diffstat (limited to 'pkgs/applications/editors/nedit')
-rw-r--r--pkgs/applications/editors/nedit/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/applications/editors/nedit/default.nix b/pkgs/applications/editors/nedit/default.nix
index d933a207cd4..a15b557f0e5 100644
--- a/pkgs/applications/editors/nedit/default.nix
+++ b/pkgs/applications/editors/nedit/default.nix
@@ -1,16 +1,18 @@
 { stdenv, fetchurl, xlibsWrapper, motif, libXpm }:
 
 stdenv.mkDerivation rec {
-  name = "nedit-5.6a";
+  name = "nedit-${version}";
+  version = "5.7";
   
   src = fetchurl {
     url = "mirror://sourceforge/nedit/nedit-source/${name}-src.tar.gz";
-    sha256 = "1v8y8vwj3kn91crsddqkz843y6csgw7wkjnd3zdcb4bcrf1pjrsk";
+    sha256 = "0ym1zhjx9976rf2z5nr7dj4mjkxcicimhs686snjhdcpzxwsrndd";
   };
 
   hardeningDisable = [ "format" ];
 
-  buildInputs = [ xlibsWrapper motif libXpm ];
+  nativeBuildInputs = [ xlibsWrapper ];
+  buildInputs = [ motif libXpm ];
 
   buildFlags = if stdenv.isLinux then "linux" else
                # the linux config works fine on darwin too!
@@ -24,7 +26,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    homepage = http://www.nedit.org;
+    homepage = http://sourceforge.net/projects/nedit;
     platforms = with platforms; linux ++ darwin;
   };
 }