nixpkgs/pkgs/development/libraries/gobject-introspection/setup-hook.sh
aszlig d60d390a8a
gobject-introspection: Provide a setup hook.
Now the respective GIR paths should be set automatically when packages are using
gobjectIntrospection as a dependency.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-12-12 05:44:31 +01:00

8 lines
138 B
Bash

addGirPath()
{
addToSearchPathWithCustomDelimiter : \
NIX_GIR_PATH "$1/share/gir-1.0"
}
envHooks=(${envHooks[@]} addGirPath)