summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-08-14 23:51:29 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-08-14 23:51:29 +0200
commit56d9b2cc8a50554c8f4a8ce7ac9218c42e9340c1 (patch)
tree4b468edb44e107e4a9b954d6b202e54e8c5a1541 /pkgs
parent06a324f7dc520776309ed793cc008b5c04a32a2e (diff)
parent2fc0537018180b32071ea350cc22d86115adf9e8 (diff)
downloadnixlib-56d9b2cc8a50554c8f4a8ce7ac9218c42e9340c1.tar
nixlib-56d9b2cc8a50554c8f4a8ce7ac9218c42e9340c1.tar.gz
nixlib-56d9b2cc8a50554c8f4a8ce7ac9218c42e9340c1.tar.bz2
nixlib-56d9b2cc8a50554c8f4a8ce7ac9218c42e9340c1.tar.lz
nixlib-56d9b2cc8a50554c8f4a8ce7ac9218c42e9340c1.tar.xz
nixlib-56d9b2cc8a50554c8f4a8ce7ac9218c42e9340c1.tar.zst
nixlib-56d9b2cc8a50554c8f4a8ce7ac9218c42e9340c1.zip
merge #3428: nano: bump and add system-wide config
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/editors/nano/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix
index c347a038ac9a..caea8758d958 100644
--- a/pkgs/applications/editors/nano/default.nix
+++ b/pkgs/applications/editors/nano/default.nix
@@ -2,17 +2,19 @@
 
 stdenv.mkDerivation (rec {
   pname = "nano";
-  version = "2.3.2";
+  version = "2.3.6";
 
   name = "${pname}-${version}";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${name}.tar.gz";
-    sha256 = "1s3b21h5p7r8xafw0gahswj16ai6k2vnjhmd15b491hl0x494c7z";
+    sha256 = "a74bf3f18b12c1c777ae737c0e463152439e381aba8720b4bc67449f36a09534";
   };
 
   buildInputs = [ ncurses gettext ];
 
+  configureFlags = "sysconfdir=/etc";
+
   meta = {
     homepage = http://www.nano-editor.org/;
     description = "A small, user-friendly console text editor";