about summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2016-10-30 12:35:57 -0400
committerAneesh Agrawal <aneeshusa@gmail.com>2016-10-30 14:34:40 -0400
commit3d99eea85208d4f491e3a5c241b03d2c8d0c4125 (patch)
tree7e11be2d49a3d9202d879fb147d52cc40857c632 /nixos/modules/services
parent3cb116f708896b2c33f5cc3a4a925fd6a762dfa0 (diff)
downloadnixlib-3d99eea85208d4f491e3a5c241b03d2c8d0c4125.tar
nixlib-3d99eea85208d4f491e3a5c241b03d2c8d0c4125.tar.gz
nixlib-3d99eea85208d4f491e3a5c241b03d2c8d0c4125.tar.bz2
nixlib-3d99eea85208d4f491e3a5c241b03d2c8d0c4125.tar.lz
nixlib-3d99eea85208d4f491e3a5c241b03d2c8d0c4125.tar.xz
nixlib-3d99eea85208d4f491e3a5c241b03d2c8d0c4125.tar.zst
nixlib-3d99eea85208d4f491e3a5c241b03d2c8d0c4125.zip
docs: use overrideAttrs instead of overrideDerivation
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/editors/emacs.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/editors/emacs.xml b/nixos/modules/services/editors/emacs.xml
index bcaa8b8df3d8..e03f6046de8e 100644
--- a/nixos/modules/services/editors/emacs.xml
+++ b/nixos/modules/services/editors/emacs.xml
@@ -356,14 +356,14 @@ https://nixos.org/nixpkgs/manual/#sec-modify-via-packageOverrides
         <programlisting><![CDATA[
 { pkgs ? import <nixpkgs> {} }:
 let
-  myEmacs = pkgs.lib.overrideDerivation (pkgs.emacs.override {
+  myEmacs = (pkgs.emacs.override {
     # Use gtk3 instead of the default gtk2
     withGTK3 = true;
     withGTK2 = false;
-  }) (attrs: {
+  }).overrideAttrs (attrs: {
     # I don't want emacs.desktop file because I only use
     # emacsclient.
-    postInstall = attrs.postInstall + ''
+    postInstall = (attrs.postInstall or "") + ''
       rm $out/share/applications/emacs.desktop
     '';
   });