ark: use plain unzip

Use plain unzip instead of unzipNLS, which is unnecessary and also broken.
This commit is contained in:
Thomas Tuegel 2017-07-07 15:23:03 -05:00
parent 46ecfa1908
commit 933f384fc7
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -7,7 +7,7 @@
khtml, kio, kparts, kpty, kservice, kwidgetsaddons, libarchive,
# Archive tools
p7zip, unzipNLS, zip,
p7zip, unzip, zip,
# Unfree tools
unfreeEnableUnrar ? false, unrar,
@ -25,7 +25,7 @@ mkDerivation {
let
PATH =
lib.makeBinPath
([ p7zip unzipNLS zip ] ++ lib.optional unfreeEnableUnrar unrar);
([ p7zip unzip zip ] ++ lib.optional unfreeEnableUnrar unrar);
in ''
wrapProgram "$out/bin/ark" --prefix PATH: "${PATH}"
'';