gobject-introspection: Don't hardcode /nix/store

If no config.nix.storeDir has been set, don't fall back to "/nix/store"
but use builtins.storeDir instead so we always should end up with the
correct store path no matter whether config.nix.storeDir has been set.

Thanks to @lethalman for pointing this out.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2016-01-22 23:55:31 +01:00
parent c83e697aa0
commit 723f7f8f4f
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, glib, flex, bison, pkgconfig, libffi, python { stdenv, fetchurl, glib, flex, bison, pkgconfig, libffi, python
, libintlOrEmpty, autoconf, automake, otool , libintlOrEmpty, autoconf, automake, otool
, substituteAll, nixStoreDir ? "/nix/store" , substituteAll, nixStoreDir ? builtins.storeDir
}: }:
# now that gobjectIntrospection creates large .gir files (eg gtk3 case) # now that gobjectIntrospection creates large .gir files (eg gtk3 case)
# it may be worth thinking about using multiple derivation outputs # it may be worth thinking about using multiple derivation outputs

View File

@ -6640,7 +6640,7 @@ let
mpfr = callPackage ../development/libraries/mpfr/default.nix { }; mpfr = callPackage ../development/libraries/mpfr/default.nix { };
gobjectIntrospection = callPackage ../development/libraries/gobject-introspection { gobjectIntrospection = callPackage ../development/libraries/gobject-introspection {
nixStoreDir = config.nix.storeDir or "/nix/store"; nixStoreDir = config.nix.storeDir or builtins.storeDir;
}; };
goocanvas = callPackage ../development/libraries/goocanvas { }; goocanvas = callPackage ../development/libraries/goocanvas { };