mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 08:44:31 +00:00
atom, atom-beta: fix not working file deletion
Through deprecation of gvfs-trash, gio has to be in PATH. Atom automagically detects gio and uses it.
This commit is contained in:
parent
f9d9227040
commit
d2a975169a
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, pkgs, fetchurl, wrapGAppsHook, gvfs, gtk3, atomEnv }:
|
{ lib, stdenv, pkgs, fetchurl, wrapGAppsHook, glib, gtk3, atomEnv }:
|
||||||
|
|
||||||
let
|
let
|
||||||
versions = {
|
versions = {
|
||||||
@ -54,7 +54,8 @@ let
|
|||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
gappsWrapperArgs+=(
|
gappsWrapperArgs+=(
|
||||||
--prefix "PATH" : "${gvfs}/bin"
|
# needed for gio executable to be able to delete files
|
||||||
|
--prefix "PATH" : "${glib.bin}/bin"
|
||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user