3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #98124 from Gerschtli/fix/atom

atom, atom-beta: fix not working file deletion
This commit is contained in:
Sandro 2021-01-23 22:58:13 +01:00 committed by GitHub
commit 1af6e3aeed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"
)
'';