git: add reasonable defaults for boolean flags
This commit is contained in:
parent
74f33d9a4a
commit
a26c5495cd
2 changed files with 3 additions and 6 deletions
|
@ -4,15 +4,15 @@
|
|||
, openssh, pcre2, bash
|
||||
, asciidoc, texinfo, xmlto, docbook2x, docbook_xsl, docbook_xml_dtd_45
|
||||
, libxslt, tcl, tk, makeWrapper, libiconv
|
||||
, svnSupport, subversionClient, perlLibs, smtpPerlLibs
|
||||
, svnSupport ? false, subversionClient, perlLibs, smtpPerlLibs
|
||||
, perlSupport ? stdenv.buildPlatform == stdenv.hostPlatform
|
||||
, nlsSupport ? true
|
||||
, osxkeychainSupport ? stdenv.isDarwin
|
||||
, guiSupport
|
||||
, guiSupport ? false
|
||||
, withManual ? true
|
||||
, pythonSupport ? true
|
||||
, withpcre2 ? true
|
||||
, sendEmailSupport
|
||||
, sendEmailSupport ? false
|
||||
, darwin
|
||||
, nixosTests
|
||||
, withLibsecret ? false
|
||||
|
|
|
@ -26139,9 +26139,6 @@ with pkgs;
|
|||
};
|
||||
|
||||
git = callPackage ../applications/version-management/git-and-tools/git {
|
||||
svnSupport = false; # for git-svn support
|
||||
guiSupport = false; # requires tcl/tk
|
||||
sendEmailSupport = false; # requires plenty of perl libraries
|
||||
perlLibs = [perlPackages.LWP perlPackages.URI perlPackages.TermReadKey];
|
||||
smtpPerlLibs = [
|
||||
perlPackages.libnet perlPackages.NetSMTPSSL
|
||||
|
|
Loading…
Reference in a new issue