pkgs/top-level/all-packages.nix: added ikiwiki.{git,monotone} options to $NIXPKGS_CONFIG

Set "ikiwiki = { git = true; monotone = true; };" in $NIXPKGS_CONFIG to
enable support for git and monotone in ikiwiki. If left unconfigured,
the default is to include support for git, but not for monotone.

From trunk@21415

svn path=/nixpkgs/branches/mass-update-01/; revision=21501
This commit is contained in:
Yury G. Kudryashov
2010-05-01 16:11:39 +00:00
parent a6658cdf67
commit 4e563617a3

View File

@@ -7664,8 +7664,8 @@ let
inherit fetchurl stdenv perl gettext makeWrapper lib;
inherit (perlPackages) TextMarkdown URI HTMLParser HTMLScrubber
HTMLTemplate TimeDate CGISession DBFile CGIFormBuilder LocaleGettext;
inherit git; # The RCS should be optional
monotone = null;
git = if getPkgConfig "ikiwiki" "git" true then git else null;
monotone = if getPkgConfig "ikiwiki" "monotone" false then monotone else null;
extraUtils = [];
};