summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-23 22:58:13 +0100
committerGitHub <noreply@github.com>2021-01-23 22:58:13 +0100
commit1af6e3aeedce4e7c41738f847923daba186adeb9 (patch)
treecebf41b31abb8039085d0ae29315718eef383096
parent3df6e76a158eed2344fd97a3acb8c9232a9e5b75 (diff)
parentd2a975169a73215e58ffb1fa6c7c8270775382f8 (diff)
downloadnixpkgs-1af6e3aeedce4e7c41738f847923daba186adeb9.tar
nixpkgs-1af6e3aeedce4e7c41738f847923daba186adeb9.tar.gz
nixpkgs-1af6e3aeedce4e7c41738f847923daba186adeb9.tar.bz2
nixpkgs-1af6e3aeedce4e7c41738f847923daba186adeb9.tar.lz
nixpkgs-1af6e3aeedce4e7c41738f847923daba186adeb9.tar.xz
nixpkgs-1af6e3aeedce4e7c41738f847923daba186adeb9.tar.zst
nixpkgs-1af6e3aeedce4e7c41738f847923daba186adeb9.zip
Merge pull request #98124 from Gerschtli/fix/atom
atom, atom-beta: fix not working file deletion
-rw-r--r--pkgs/applications/editors/atom/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix
index 7a6d5b5cd91..e7a9a26f066 100644
--- a/pkgs/applications/editors/atom/default.nix
+++ b/pkgs/applications/editors/atom/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, pkgs, fetchurl, wrapGAppsHook, gvfs, gtk3, atomEnv }:
+{ lib, stdenv, pkgs, fetchurl, wrapGAppsHook, glib, gtk3, atomEnv }:
 
 let
   versions = {
@@ -54,7 +54,8 @@ let
 
     preFixup = ''
       gappsWrapperArgs+=(
-        --prefix "PATH" : "${gvfs}/bin"
+        # needed for gio executable to be able to delete files
+        --prefix "PATH" : "${glib.bin}/bin"
       )
     '';