summary refs log tree commit diff
path: root/pkgs/top-level/emacs-packages.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-07-18 23:09:55 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-07-24 16:12:40 -0400
commit3b8e595810fc8faa89a81d4a4c4064bb5cf24e8a (patch)
tree43ef0729de07ad092afdb2c26cea7ea59dfe633e /pkgs/top-level/emacs-packages.nix
parent3531a229d1d9b67305bcf9f0441365f2e89cc361 (diff)
downloadnixpkgs-3b8e595810fc8faa89a81d4a4c4064bb5cf24e8a.tar
nixpkgs-3b8e595810fc8faa89a81d4a4c4064bb5cf24e8a.tar.gz
nixpkgs-3b8e595810fc8faa89a81d4a4c4064bb5cf24e8a.tar.bz2
nixpkgs-3b8e595810fc8faa89a81d4a4c4064bb5cf24e8a.tar.lz
nixpkgs-3b8e595810fc8faa89a81d4a4c4064bb5cf24e8a.tar.xz
nixpkgs-3b8e595810fc8faa89a81d4a4c4064bb5cf24e8a.tar.zst
nixpkgs-3b8e595810fc8faa89a81d4a4c4064bb5cf24e8a.zip
zmq: add enableDrafts option
This is needed by emacs-zmq, and will be used by it.
Diffstat (limited to 'pkgs/top-level/emacs-packages.nix')
-rw-r--r--pkgs/top-level/emacs-packages.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix
index 29600670f61..6696520c33e 100644
--- a/pkgs/top-level/emacs-packages.nix
+++ b/pkgs/top-level/emacs-packages.nix
@@ -434,7 +434,10 @@ let
     };
     stripDebugList = [ "share" ];
     packageRequires = [ emacs ];
-    nativeBuildInputs = [ external.autoconf external.automake external.pkgconfig external.libtool external.zeromq ];
+    nativeBuildInputs = [
+      external.autoconf external.automake external.pkgconfig external.libtool
+      (external.zeromq.override { enableDrafts = true; })
+    ];
     preBuild = ''
       make
     '';