lol

libxmlb: 0.1.13 → 0.1.14

https://github.com/hughsie/libxmlb/commit/412a991890f895e45fc771aa9aa7d6c55a1505d7

+12 -14
+2 -4
pkgs/development/libraries/libxmlb/default.nix
··· 5 5 , glib 6 6 , gobject-introspection 7 7 , gtk-doc 8 - , libuuid 9 8 , meson 10 9 , ninja 11 10 , pkgconfig ··· 16 15 17 16 stdenv.mkDerivation rec { 18 17 pname = "libxmlb"; 19 - version = "0.1.13"; 18 + version = "0.1.14"; 20 19 21 20 outputs = [ "out" "lib" "dev" "devdoc" "installedTests" ]; 22 21 ··· 24 23 owner = "hughsie"; 25 24 repo = "libxmlb"; 26 25 rev = version; 27 - sha256 = "14bk7bk08mjbildak1l7jq7idcyask7384vigpq9zmwai1gax4s7"; 26 + sha256 = "05snbv1dvqa96k7xlwi2sj161315kps3baansr9xdpwim5ckmwc6"; 28 27 }; 29 28 30 29 patches = [ ··· 45 44 46 45 buildInputs = [ 47 46 glib 48 - libuuid 49 47 ]; 50 48 51 49 mesonFlags = [
+10 -10
pkgs/development/libraries/libxmlb/installed-tests-path.patch
··· 1 1 diff --git a/meson.build b/meson.build 2 - index b064cb8..1a470cf 100644 2 + index 38486c9..c567613 100644 3 3 --- a/meson.build 4 4 +++ b/meson.build 5 - @@ -103,8 +103,8 @@ 6 - 7 - libexecdir = join_paths(prefix, get_option('libexecdir')) 8 - datadir = join_paths(prefix, get_option('datadir')) 9 - -installed_test_bindir = join_paths(libexecdir, 'installed-tests', meson.project_name()) 10 - -installed_test_datadir = join_paths(datadir, 'installed-tests', meson.project_name()) 11 - +installed_test_bindir = join_paths(get_option('installed_test_prefix'), 'libexec', 'installed-tests', meson.project_name()) 12 - +installed_test_datadir = join_paths(get_option('installed_test_prefix'), 'share', 'installed-tests', meson.project_name()) 5 + @@ -110,8 +110,8 @@ 6 + prefix = get_option('prefix') 7 + datadir = join_paths(prefix, get_option('datadir')) 8 + libexecdir = join_paths(prefix, get_option('libexecdir')) 9 + - installed_test_bindir = join_paths(libexecdir, 'installed-tests', meson.project_name()) 10 + - installed_test_datadir = join_paths(datadir, 'installed-tests', meson.project_name()) 11 + + installed_test_bindir = join_paths(get_option('installed_test_prefix'), 'libexec', 'installed-tests', meson.project_name()) 12 + + installed_test_datadir = join_paths(get_option('installed_test_prefix'), 'share', 'installed-tests', meson.project_name()) 13 + endif 13 14 14 15 gio = dependency('gio-2.0', version : '>= 2.45.8') 15 - uuid = dependency('uuid') 16 16 diff --git a/meson_options.txt b/meson_options.txt 17 17 index 27e8cb6..74548ae 100644 18 18 --- a/meson_options.txt