summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorJason "Don" O'Conal <lovek323@gmail.com>2013-07-03 19:52:22 +1000
committerJason "Don" O'Conal <lovek323@gmail.com>2013-07-03 19:57:38 +1000
commit72a771b6e4b3583a3f8b5ae118b60fc16b012ac9 (patch)
tree843519de4e15aac5221a336efe08210cb262d730 /pkgs/applications/editors
parente84ba407f9ca49320d50e1a4db60923fb4062dfd (diff)
downloadnixlib-72a771b6e4b3583a3f8b5ae118b60fc16b012ac9.tar
nixlib-72a771b6e4b3583a3f8b5ae118b60fc16b012ac9.tar.gz
nixlib-72a771b6e4b3583a3f8b5ae118b60fc16b012ac9.tar.bz2
nixlib-72a771b6e4b3583a3f8b5ae118b60fc16b012ac9.tar.lz
nixlib-72a771b6e4b3583a3f8b5ae118b60fc16b012ac9.tar.xz
nixlib-72a771b6e4b3583a3f8b5ae118b60fc16b012ac9.tar.zst
nixlib-72a771b6e4b3583a3f8b5ae118b60fc16b012ac9.zip
emacs24: fix build on darwin
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/emacs-24/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/emacs-24/default.nix b/pkgs/applications/editors/emacs-24/default.nix
index a781cb373466..470d8f53cb85 100644
--- a/pkgs/applications/editors/emacs-24/default.nix
+++ b/pkgs/applications/editors/emacs-24/default.nix
@@ -44,7 +44,7 @@ EOF
 
   doCheck = true;
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "GNU Emacs 24, the extensible, customizable text editor";
 
     longDescription = ''
@@ -67,7 +67,7 @@ EOF
     homepage = "http://www.gnu.org/software/emacs/";
     license = "GPLv3+";
 
-    maintainers = with stdenv.lib.maintainers; [ ludo simons chaoflow ];
-    platforms = stdenv.lib.platforms.all;
+    maintainers = with maintainers; [ chaoflow lovek323 ludo simons ];
+    platforms = platforms.all;
   };
 }