Fix filetype filtering in fiv
This commit is contained in:
parent
02f1912055
commit
b72b93128b
|
@ -24,6 +24,7 @@ pkgs.stdenv.mkDerivation rec {
|
||||||
gtk3
|
gtk3
|
||||||
libwebp
|
libwebp
|
||||||
libraw
|
libraw
|
||||||
|
shared-mime-info
|
||||||
|
|
||||||
# WIP
|
# WIP
|
||||||
libepoxy
|
libepoxy
|
||||||
|
@ -76,10 +77,12 @@ pkgs.stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
# See nixpkgs commit b1e73fa2e086f1033a33d93524ae2a1781d12b95 about icons.
|
# See nixpkgs commit b1e73fa2e086f1033a33d93524ae2a1781d12b95 about icons.
|
||||||
# It used to work automatically.
|
# It might make sense to name {hicolor,gnome.adwaita}-icon-theme/share
|
||||||
|
# explicitly, to limit undesired dependencies.
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
gappsWrapperArgs+=(
|
gappsWrapperArgs+=(
|
||||||
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
|
||||||
|
--prefix XDG_DATA_DIRS : "${pkgs.shared-mime-info}/share"
|
||||||
--prefix PATH : $out/bin:${pkgs.lib.makeBinPath [ pkgs.exiftool ]}
|
--prefix PATH : $out/bin:${pkgs.lib.makeBinPath [ pkgs.exiftool ]}
|
||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -55,7 +55,8 @@ pkgs.stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
# See nixpkgs commit b1e73fa2e086f1033a33d93524ae2a1781d12b95 about icons.
|
# See nixpkgs commit b1e73fa2e086f1033a33d93524ae2a1781d12b95 about icons.
|
||||||
# It used to work automatically.
|
# It might make sense to name {hicolor,gnome.adwaita}-icon-theme/share
|
||||||
|
# explicitly, to limit undesired dependencies.
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
gappsWrapperArgs+=(
|
gappsWrapperArgs+=(
|
||||||
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
|
||||||
|
|
Loading…
Reference in New Issue