Merge pull request #1265 from jglukasik/patch-2

Add `git` to default.nix dependencies
This commit is contained in:
Jared Tobin 2019-05-02 21:10:45 +08:00 committed by GitHub
commit ac6a3f03bc
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");