1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

ark: remove p7zip

This commit is contained in:
Edmund Wu 2020-05-01 16:03:36 -04:00 committed by Milan
parent d9fc843f95
commit 06fa14fd7d

View file

@ -9,14 +9,14 @@
libarchive, libzip,
# Archive tools
p7zip, lrzip,
lrzip,
# Unfree tools
unfreeEnableUnrar ? false, unrar,
}:
let
extraTools = [ p7zip lrzip ] ++ lib.optional unfreeEnableUnrar unrar;
extraTools = [ lrzip ] ++ lib.optional unfreeEnableUnrar unrar;
in
mkDerivation {