summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-11-23 16:40:37 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-11-23 16:41:42 +0100
commit148f8d2c21387f9561c4a0e0cf9927bacee9eb5a (patch)
treee9af2fb4da23ac5b1e0440697b42d347bb3cedca /pkgs/applications/editors/nano
parent9ba89899d5e22e5f11a9d2081bb420d9fefca9f1 (diff)
downloadnixlib-148f8d2c21387f9561c4a0e0cf9927bacee9eb5a.tar
nixlib-148f8d2c21387f9561c4a0e0cf9927bacee9eb5a.tar.gz
nixlib-148f8d2c21387f9561c4a0e0cf9927bacee9eb5a.tar.bz2
nixlib-148f8d2c21387f9561c4a0e0cf9927bacee9eb5a.tar.lz
nixlib-148f8d2c21387f9561c4a0e0cf9927bacee9eb5a.tar.xz
nixlib-148f8d2c21387f9561c4a0e0cf9927bacee9eb5a.tar.zst
nixlib-148f8d2c21387f9561c4a0e0cf9927bacee9eb5a.zip
nano: Update to 2.2.6
Also enable all features that were disabled (mouse support!).  This
adds a whopping 48 KB to the binary.
Diffstat (limited to 'pkgs/applications/editors/nano')
-rw-r--r--pkgs/applications/editors/nano/default.nix17
1 files changed, 3 insertions, 14 deletions
diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix
index 974ced7d2b18..15cdadb04f53 100644
--- a/pkgs/applications/editors/nano/default.nix
+++ b/pkgs/applications/editors/nano/default.nix
@@ -2,27 +2,16 @@
 
 stdenv.mkDerivation (rec {
   pname = "nano";
-  version = "2.2.3";
+  version = "2.2.6";
 
   name = "${pname}-${version}";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${name}.tar.gz";
-    sha256 = "1vpl993xrpj8bqi1ayga8fc0j2jag90xp6rqakzwm3bxw71hmwi2";
+    sha256 = "0yp6pid67k8h7394spzw0067fl2r7rxm2b6kfccg87g8nlry2s5y";
   };
-  
+
   buildInputs = [ ncurses gettext ];
-  
-  configureFlags = ''
-    --disable-browser 
-    --disable-help 
-    --disable-justify 
-    --disable-mouse 
-    --disable-operatingdir
-    --disable-speller
-    --disable-tabcomp
-    --disable-wrapping
-  '';
 
   meta = {
     homepage = http://www.nano-editor.org/;