mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pkgs/applications/version-management/git-and-tools: disable sendEmailSupport on Darwin in gitFull
The required perl libraries don't build on Darwin. svn path=/nixpkgs/trunk/; revision=21872
This commit is contained in:
parent
dd5add68e1
commit
5e4bf97212
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ rec {
|
|||
gitFull = git.override {
|
||||
svnSupport = true;
|
||||
guiSupport = true;
|
||||
sendEmailSupport = true;
|
||||
sendEmailSupport = stdenv.isDarwin == false;
|
||||
};
|
||||
|
||||
gitGit = import ./git/git-git.nix {
|
||||
|
|
Loading…
Reference in a new issue