about summary refs log tree commit diff
path: root/pkgs/applications/video/losslesscut-bin
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-05-15 05:08:10 +0300
committerArtturin <Artturin@artturin.com>2022-05-15 05:19:23 +0300
commit1a634cc0577f4bf55b9556ecf8aa721c3ec865e3 (patch)
tree482f33bed501e3082b38f60d34866eac3d4f7140 /pkgs/applications/video/losslesscut-bin
parentbe2ceab96f3aee5e586a427a2d28331ccbd4c7da (diff)
treewide: remove unecessary XDG_DATA_DIRS from appimage wrapType2
they're unnecessary since https://github.com/NixOS/nixpkgs/pull/161739/files

which links the schemas to their correct fhs locations and adds
gsettings-desktop-schemas and hicolor-icon-theme to appimage fhs
Diffstat (limited to 'pkgs/applications/video/losslesscut-bin')
-rw-r--r--pkgs/applications/video/losslesscut-bin/appimage.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/applications/video/losslesscut-bin/appimage.nix b/pkgs/applications/video/losslesscut-bin/appimage.nix
index e6be6f54e1dc8..87518479db4b9 100644
--- a/pkgs/applications/video/losslesscut-bin/appimage.nix
+++ b/pkgs/applications/video/losslesscut-bin/appimage.nix
@@ -1,4 +1,4 @@
-{ appimageTools, lib, fetchurl, gtk3, gsettings-desktop-schemas, version, sha256 }:
+{ appimageTools, lib, fetchurl, version, sha256 }:
 
 let
   pname = "losslesscut";
@@ -21,7 +21,6 @@ in appimageTools.wrapType2 {
 
   profile = ''
     export LC_ALL=C.UTF-8
-    export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
   '';
 
   extraPkgs = ps: appimageTools.defaultFhsEnvArgs.multiPkgs ps;