Add git to default.nix dependencies

Fixes a "No such file or directory: 'git': 'git'" error in running ./scripts/nixbuild on NixOS
This commit is contained in:
Joseph Lukasik 2019-05-01 13:24:34 -07:00 committed by GitHub
parent e7dc361918
commit e43da61505
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ let
with darwin.apple_sdk.frameworks;
[ Cocoa CoreServices ]);
deps = [ cmark curl gcc gmp libsigsegv meson ncurses ninja pkgconfig zlib
deps = [ cmark curl gcc git gmp libsigsegv meson ncurses ninja pkgconfig zlib
re2c openssl ];
isGitDir = (path: type: type != "directory" || baseNameOf path != ".git");