about summary refs log tree commit diff
path: root/nixpkgs
diff options
context:
space:
mode:
authorBrian Leung <leungbk@mailfence.com>2020-08-28 20:40:12 -0700
committerAlyssa Ross <hi@alyssa.is>2020-10-01 16:36:45 +0000
commited0a24db231ece2e34d61bff57cefa7443ffbb25 (patch)
tree6143440c894c22c472e11627128bb5a5a95c19ac /nixpkgs
parentfc8104e46b5fd7a0492e007a6691336fa8b31c10 (diff)
downloadnixlib-ed0a24db231ece2e34d61bff57cefa7443ffbb25.tar
nixlib-ed0a24db231ece2e34d61bff57cefa7443ffbb25.tar.gz
nixlib-ed0a24db231ece2e34d61bff57cefa7443ffbb25.tar.bz2
nixlib-ed0a24db231ece2e34d61bff57cefa7443ffbb25.tar.lz
nixlib-ed0a24db231ece2e34d61bff57cefa7443ffbb25.tar.xz
nixlib-ed0a24db231ece2e34d61bff57cefa7443ffbb25.tar.zst
nixlib-ed0a24db231ece2e34d61bff57cefa7443ffbb25.zip
emacsPackages.orgit-forge: override build inputs to include Git
(cherry picked from commit bea26371b5ac54cdf4e7610591e11ccbf3681ed0)
Diffstat (limited to 'nixpkgs')
-rw-r--r--nixpkgs/pkgs/applications/editors/emacs-modes/melpa-packages.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/nixpkgs/pkgs/applications/editors/emacs-modes/melpa-packages.nix
index f228d34a654e..c48e342977e3 100644
--- a/nixpkgs/pkgs/applications/editors/emacs-modes/melpa-packages.nix
+++ b/nixpkgs/pkgs/applications/editors/emacs-modes/melpa-packages.nix
@@ -531,6 +531,12 @@ let
               (attrs.nativeBuildInputs or [ ]) ++ [ external.git ];
           }));
 
+        orgit-forge = super.orgit-forge.overrideAttrs (attrs: {
+          # searches for Git at build time
+          nativeBuildInputs =
+            (attrs.nativeBuildInputs or [ ]) ++ [ external.git ];
+        });
+
         # tries to write to $HOME
         php-auto-yasnippets = super.php-auto-yasnippets.overrideAttrs (attrs: {
           HOME = "/tmp";