Removed legacy getFlag function
svn path=/nixpkgs/branches/stdenv-updates/; revision=9916
This commit is contained in:
parent
8dd9e323ff
commit
8a0b8dcff6
@ -154,11 +154,6 @@ rec {
|
||||
version = getConfig [ "environment" "versions" name ];
|
||||
};
|
||||
|
||||
# Whether user enabled given feature for the given package?
|
||||
getFlag = flag: package: default:
|
||||
getConfig [ "environment" "flags" package flag ]
|
||||
(getConfig [ "environment" "flags" "default" flag ] default);
|
||||
|
||||
# The contents of the configuration file found at $NIXPKGS_CONFIG or
|
||||
# $HOME/.nixpkgs/config.nix.
|
||||
config =
|
||||
@ -2279,7 +2274,7 @@ rec {
|
||||
|
||||
pcre = import ../development/libraries/pcre {
|
||||
inherit fetchurl stdenv;
|
||||
unicodeSupport = getFlag "unicode" "pcre" false;
|
||||
unicodeSupport = getConfig ["pcre" "unicode"] false;
|
||||
};
|
||||
|
||||
poppler = import ../development/libraries/poppler {
|
||||
|
Loading…
Reference in New Issue
Block a user