Skip to content

Commit d4c5ec6

Browse files
committed
evolution: Fix command not found in the backup restore
Fixes https://www.github.com/NixOS/nixpkgs/issues/465392 There are many uses of these thus a wrapper is better than substituting https://gitlab.gnome.org/search?group_id=8&nav_source=navbar&page=2&project_id=1604&repository_ref=master&search=gzip&search_code=true
1 parent 8c8c5ab commit d4c5ec6

File tree

1 file changed

+15
-0
lines changed
  • pkgs/applications/networking/mailreaders/evolution/evolution

1 file changed

+15
-0
lines changed

pkgs/applications/networking/mailreaders/evolution/evolution/default.nix

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
p11-kit,
4343
openldap,
4444
spamassassin,
45+
gnutar,
46+
gzip,
47+
xz,
4548
}:
4649

4750
stdenv.mkDerivation rec {
@@ -116,6 +119,18 @@ stdenv.mkDerivation rec {
116119
"-DWITH_OPENLDAP=${openldap}"
117120
];
118121

122+
preFixup = ''
123+
gappsWrapperArgs+=(
124+
--prefix PATH : "${
125+
lib.makeBinPath [
126+
gnutar
127+
gzip
128+
xz
129+
]
130+
}"
131+
)
132+
'';
133+
119134
requiredSystemFeatures = [
120135
"big-parallel"
121136
];

0 commit comments

Comments
 (0)