mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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:
parent
74e8f87d00
commit
d22b66cffc
1 changed files with 2 additions and 2 deletions
|
@ -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 = [];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue