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

orgit: add git to native build inputs
This commit is contained in:
Jörg Thalheim 2018-07-21 19:05:46 +01:00 committed by GitHub
commit 5e05b0a105
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -151,6 +151,13 @@ self:
# missing OCaml
ocp-indent = markBroken super.ocp-indent;
orgit =
(super.orgit.overrideAttrs (attrs: {
# searches for Git at build time
nativeBuildInputs =
(attrs.nativeBuildInputs or []) ++ [ external.git ];
}));
# upstream issue: missing dependency
org-readme = markBroken super.org-readme;