mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
ark: use plain unzip
Use plain unzip instead of unzipNLS, which is unnecessary and also broken.
This commit is contained in:
parent
46ecfa1908
commit
933f384fc7
@ -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}"
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user