summary refs log tree commit diff
path: root/pkgs/applications/blockchains/mycrypto
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/blockchains/mycrypto
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/blockchains/mycrypto')
-rw-r--r--pkgs/applications/blockchains/mycrypto/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/applications/blockchains/mycrypto/default.nix b/pkgs/applications/blockchains/mycrypto/default.nix
index ee7960a843bab..fd2b3347afd0d 100644
--- a/pkgs/applications/blockchains/mycrypto/default.nix
+++ b/pkgs/applications/blockchains/mycrypto/default.nix
@@ -1,5 +1,4 @@
 { lib, appimageTools, fetchurl, makeDesktopItem
-, gsettings-desktop-schemas, gtk3
 }:
 
 let
@@ -29,10 +28,6 @@ let
 in appimageTools.wrapType2 rec {
   inherit name src;
 
-  profile = ''
-    export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
-  '';
-
   multiPkgs = null; # no p32bit needed
   extraPkgs = appimageTools.defaultFhsEnvArgs.multiPkgs;