mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
15 lines
407 B
Bash
15 lines
407 B
Bash
|
make_gobject_introspection_find_gir_files() {
|
||
|
|
||
|
# required for .typelib files, eg mypaint git version
|
||
|
if [ -d "$1/lib/girepository-1.0" ]; then
|
||
|
addToSearchPath GI_TYPELIB_PATH $1/lib/girepository-1.0
|
||
|
fi
|
||
|
|
||
|
# XDG_DATA_DIRS: required for .gir files?
|
||
|
if [ -d "$1/share" ]; then
|
||
|
addToSearchPath XDG_DATA_DIRS $1/share
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
envHooks+=(make_gobject_introspection_find_gir_files)
|