gnome-video-effects: 0.5.0 → 0.6.0

https://gitlab.gnome.org/GNOME/gnome-video-effects/-/compare/0.5.0...0.6.0
This commit is contained in:
Bobby Rong 2023-06-19 07:13:27 +00:00
parent 7c67f006ea
commit e390743e49
No known key found for this signature in database
2 changed files with 2 additions and 19 deletions

View file

@ -9,19 +9,13 @@
stdenv.mkDerivation rec {
pname = "gnome-video-effects";
version = "0.5.0";
version = "0.6.0";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1j6h98whgkcxrh30bwvnxvyqxrxchgpdgqhl0j71xz7x72dqxijd";
sha256 = "166utGs/WoMvsuDZC0K/jGFgICylKsmt0Xr84ZLjyKg=";
};
patches = [
# Fix effectsdir in .pc file
# https://gitlab.gnome.org/GNOME/gnome-video-effects/commit/955404195ada606819974dd63c48956f25611e14
./fix-pc-file.patch
];
nativeBuildInputs = [
meson
ninja

View file

@ -1,11 +0,0 @@
--- a/meson.build
+++ b/meson.build
@@ -17,7 +17,7 @@
# Can't use pkgconfig helper https://github.com/mesonbuild/meson/issues/2253
conf = configuration_data()
conf.set('prefix', prefix)
-conf.set('datarootdir', pkgdatadir)
+conf.set('datarootdir', datadir)
conf.set('VERSION', meson.project_version())
pkg = configure_file(configuration: conf,