Merge pull request #43901 from periklis/orgit-fix-inputs

orgit: add git to native build inputs

authored by Jörg Thalheim and committed by GitHub 5e05b0a1 e97e1747

+7
+7
pkgs/applications/editors/emacs-modes/melpa-packages.nix
··· 151 151 # missing OCaml 152 152 ocp-indent = markBroken super.ocp-indent; 153 153 154 + orgit = 155 + (super.orgit.overrideAttrs (attrs: { 156 + # searches for Git at build time 157 + nativeBuildInputs = 158 + (attrs.nativeBuildInputs or []) ++ [ external.git ]; 159 + })); 160 + 154 161 # upstream issue: missing dependency 155 162 org-readme = markBroken super.org-readme; 156 163