vdiff-magit: Include git in nativeBuildInputs (#45314)

Like magit, vdiff-magit expects git to be present at install time.
This commit is contained in:
Benjamin Staffin 2018-08-20 21:23:54 -04:00 committed by GitHub
parent 170b8a85d2
commit 23340918d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -202,6 +202,12 @@ self:
# missing OCaml # missing OCaml
utop = markBroken super.utop; utop = markBroken super.utop;
vdiff-magit =
(super.vdiff-magit.overrideAttrs (attrs: {
nativeBuildInputs =
(attrs.nativeBuildInputs or []) ++ [ external.git ];
}));
# upstream issue: missing file header # upstream issue: missing file header
voca-builder = markBroken super.voca-builder; voca-builder = markBroken super.voca-builder;

View file

@ -194,6 +194,12 @@ self:
# missing OCaml # missing OCaml
utop = markBroken super.utop; utop = markBroken super.utop;
vdiff-magit =
(super.vdiff-magit.overrideAttrs (attrs: {
nativeBuildInputs =
(attrs.nativeBuildInputs or []) ++ [ external.git ];
}));
# upstream issue: missing file header # upstream issue: missing file header
voca-builder = markBroken super.voca-builder; voca-builder = markBroken super.voca-builder;