about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-27 13:52:39 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-07-27 08:14:56 -0700
commit82bcc356c311e18063ec03d8ec67e8fa6ab6db0d (patch)
treebfc99344955f01c941af7839f0b1466caa56c686 /pkgs/applications
parentb683f580c03d522ffde1964c8e9b47dd5b25b68d (diff)
downloadnixlib-82bcc356c311e18063ec03d8ec67e8fa6ab6db0d.tar
nixlib-82bcc356c311e18063ec03d8ec67e8fa6ab6db0d.tar.gz
nixlib-82bcc356c311e18063ec03d8ec67e8fa6ab6db0d.tar.bz2
nixlib-82bcc356c311e18063ec03d8ec67e8fa6ab6db0d.tar.lz
nixlib-82bcc356c311e18063ec03d8ec67e8fa6ab6db0d.tar.xz
nixlib-82bcc356c311e18063ec03d8ec67e8fa6ab6db0d.tar.zst
nixlib-82bcc356c311e18063ec03d8ec67e8fa6ab6db0d.zip
pcloud: remove alias
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/pcloud/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/networking/pcloud/default.nix b/pkgs/applications/networking/pcloud/default.nix
index e1936bf06a7f..493cde9749b1 100644
--- a/pkgs/applications/networking/pcloud/default.nix
+++ b/pkgs/applications/networking/pcloud/default.nix
@@ -15,13 +15,13 @@
 # ^1 https://github.com/NixOS/nixpkgs/issues/69338
 
 {
-  # Build dependencies
-  appimageTools, autoPatchelfHook, fetchzip, lib, stdenv,
+ # Build dependencies
+ appimageTools, autoPatchelfHook, fetchzip, lib, stdenv
 
-  # Runtime dependencies;
-  # A few additional ones (e.g. Node) are already shipped together with the
-  # AppImage, so we don't have to duplicate them here.
-  alsa-lib, dbus-glib, fuse, gnome, gtk3, libdbusmenu-gtk2, libXdamage, nss, udev
+ # Runtime dependencies;
+ # A few additional ones (e.g. Node) are already shipped together with the
+ # AppImage, so we don't have to duplicate them here.
+, alsa-lib, dbus-glib, fuse, gnome, gsettings-desktop-schemas, gtk3, libdbusmenu-gtk2, libXdamage, nss, udev
 }:
 
 let
@@ -94,7 +94,7 @@ in stdenv.mkDerivation {
 
     # This is required for the file picker dialog - otherwise pcloud just
     # crashes
-    export XDG_DATA_DIRS="${gnome.gsettings-desktop-schemas}/share/gsettings-schemas/${gnome.gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS"
+    export XDG_DATA_DIRS="${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS"
 
     exec "$out/app/pcloud"
     EOF