mercurial: remove obsolete 'getConfig' mechanism to enable/disable GUI in favor of override

svn path=/nixpkgs/trunk/; revision=31778
This commit is contained in:
Peter Simons 2012-01-21 19:08:58 +00:00
parent 3c733ba49f
commit 40656ea5d1

View file

@ -7133,8 +7133,8 @@ let
};
mercurial = callPackage ../applications/version-management/mercurial {
guiSupport = getConfig ["mercurial" "guiSupport"] false; # for hgk (gitk gui for hg)
inherit (pythonPackages) ssl curses;
guiSupport = false; # use mercurialFull to get hgk GUI
};
mercurialFull = appendToName "full" (pkgs.mercurial.override { guiSupport = true; });