mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
easytag: Fix "Using the 'memory' GSettings backend" (see issue #4415).
This commit is contained in:
parent
6221af50c4
commit
6c9eb020ab
@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, glib, libid3tag, id3lib, taglib
|
||||
, libvorbis, libogg, flac, itstool, libxml2, gsettings_desktop_schemas
|
||||
, makeWrapper, gnome_icon_theme
|
||||
, makeWrapper, gnome_icon_theme, dconf
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -14,7 +14,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
preFixup = ''
|
||||
wrapProgram $out/bin/easytag \
|
||||
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:$out/share"
|
||||
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:$out/share" \
|
||||
--prefix GIO_EXTRA_MODULES : "${dconf}/lib/gio/modules"
|
||||
'';
|
||||
|
||||
NIX_LDFLAGS = "-lid3tag -lz";
|
||||
@ -22,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [
|
||||
pkgconfig intltool gtk3 glib libid3tag id3lib taglib libvorbis libogg flac
|
||||
itstool libxml2 gsettings_desktop_schemas gnome_icon_theme
|
||||
itstool libxml2 gsettings_desktop_schemas gnome_icon_theme dconf
|
||||
];
|
||||
|
||||
meta = {
|
||||
|
@ -10272,7 +10272,7 @@ let
|
||||
};
|
||||
|
||||
easytag = callPackage ../applications/audio/easytag {
|
||||
inherit (gnome3) gnome_icon_theme;
|
||||
inherit (gnome3) gnome_icon_theme dconf;
|
||||
};
|
||||
|
||||
mp3info = callPackage ../applications/audio/mp3info { };
|
||||
|
Loading…
Reference in New Issue
Block a user