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.

svn path=/nixpkgs/trunk/; revision=21415
This commit is contained in:
Peter Simons 2010-04-29 08:53:58 +00:00
parent 74e8f87d00
commit d22b66cffc

View file

@ -7653,8 +7653,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 = [];
};