Removed legacy getFlag function

svn path=/nixpkgs/branches/stdenv-updates/; revision=9916
This commit is contained in:
Yury G. Kudryashov 2007-12-12 00:21:18 +00:00
parent 8dd9e323ff
commit 8a0b8dcff6

View file

@ -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 {