commit
c622d7d77a
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, flex, bison, libxslt, autoconf, automake, autoreconfHook
|
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, flex, bison, libxslt, autoconf, automake, autoreconfHook
|
||||||
, graphviz, glib, libiconv, libintl, libtool, expat
|
, graphviz, glib, libiconv, libintl, libtool, expat, substituteAll
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -45,6 +45,11 @@ let
|
|||||||
name = "vala-${version}";
|
name = "vala-${version}";
|
||||||
version = "${major}.${minor}";
|
version = "${major}.${minor}";
|
||||||
|
|
||||||
|
setupHook = substituteAll {
|
||||||
|
src = ./setup-hook.sh;
|
||||||
|
apiVersion = major;
|
||||||
|
};
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/vala/${major}/${name}.tar.xz";
|
url = "mirror://gnome/sources/vala/${major}/${name}.tar.xz";
|
||||||
inherit sha256;
|
inherit sha256;
|
||||||
|
15
pkgs/development/compilers/vala/setup-hook.sh
Normal file
15
pkgs/development/compilers/vala/setup-hook.sh
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
make_vala_find_vapi_files() {
|
||||||
|
# XDG_DATA_DIRS: required for finding .vapi files
|
||||||
|
if [ -d "$1/share/vala/vapi" -o -d "$1/share/vala-@apiVersion@/vapi" ]; then
|
||||||
|
addToSearchPath XDG_DATA_DIRS $1/share
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
addEnvHooks "$hostOffset" make_vala_find_vapi_files
|
||||||
|
|
||||||
|
_multioutMoveVapiDirs() {
|
||||||
|
moveToOutput share/vala/vapi "${!outputDev}"
|
||||||
|
moveToOutput share/vala-@apiVersion@/vapi "${!outputDev}"
|
||||||
|
}
|
||||||
|
|
||||||
|
preFixupHooks+=(_multioutMoveVapiDirs)
|
@ -4,8 +4,8 @@ make_gobject_introspection_find_gir_files() {
|
|||||||
addToSearchPath GI_TYPELIB_PATH $1/lib/girepository-1.0
|
addToSearchPath GI_TYPELIB_PATH $1/lib/girepository-1.0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# XDG_DATA_DIRS: required for .gir files?
|
# XDG_DATA_DIRS: required for finding .gir files
|
||||||
if [ -d "$1/share" ]; then
|
if [ -d "$1/share/gir-1.0" ]; then
|
||||||
addToSearchPath XDG_DATA_DIRS $1/share
|
addToSearchPath XDG_DATA_DIRS $1/share
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user