summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2018-10-01 11:37:47 +0800
committerPeter Hoeg <peter@hoeg.com>2018-10-01 11:37:47 +0800
commitb5c69bca37b667eb493be7bc9372a1a843ded053 (patch)
tree493c7a947e4d46f6b68137d2bf923475fa7581ea
parent46651b82b87318e37440c15a639d49ec05e79b79 (diff)
downloadnixlib-b5c69bca37b667eb493be7bc9372a1a843ded053.tar
nixlib-b5c69bca37b667eb493be7bc9372a1a843ded053.tar.gz
nixlib-b5c69bca37b667eb493be7bc9372a1a843ded053.tar.bz2
nixlib-b5c69bca37b667eb493be7bc9372a1a843ded053.tar.lz
nixlib-b5c69bca37b667eb493be7bc9372a1a843ded053.tar.xz
nixlib-b5c69bca37b667eb493be7bc9372a1a843ded053.tar.zst
nixlib-b5c69bca37b667eb493be7bc9372a1a843ded053.zip
emacs: magithub and magit-svn require git
-rw-r--r--pkgs/applications/editors/emacs-modes/melpa-packages.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
index addae2674684..0e5a0a9ec7f8 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
@@ -146,6 +146,18 @@ self:
           (attrs.nativeBuildInputs or []) ++ [ external.git ];
       });
 
+      magithub = super.magithub.overrideAttrs (attrs: {
+        # searches for Git at build time
+        nativeBuildInputs =
+          (attrs.nativeBuildInputs or []) ++ [ external.git ];
+      });
+
+      magit-svn = super.magit-svn.overrideAttrs (attrs: {
+        # searches for Git at build time
+        nativeBuildInputs =
+          (attrs.nativeBuildInputs or []) ++ [ external.git ];
+      });
+
       magit-todos = super.magit-todos.overrideAttrs (attrs: {
         # searches for Git at build time
         nativeBuildInputs =