about summary refs log tree commit diff
path: root/pkgs/tools/misc/vorbisgain
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-05-11 20:07:47 +0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-16 19:29:28 -0700
commitc5a669d3f7c9b9695f6e19f5b035a30a33576b1f (patch)
tree41d1dd44acc870be2cc236372862c09366b17bbc /pkgs/tools/misc/vorbisgain
parent75c67d6be96c5a511b78282d0ef711bc7deacf59 (diff)
treewide: remove unzip where not needed
Diffstat (limited to 'pkgs/tools/misc/vorbisgain')
-rw-r--r--pkgs/tools/misc/vorbisgain/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/tools/misc/vorbisgain/default.nix b/pkgs/tools/misc/vorbisgain/default.nix
index 6cc13e6f87e68..7aebfeab2ceeb 100644
--- a/pkgs/tools/misc/vorbisgain/default.nix
+++ b/pkgs/tools/misc/vorbisgain/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, unzip, libogg, libvorbis }:
+{ lib, stdenv, fetchurl, libogg, libvorbis }:
 
 stdenv.mkDerivation rec {
   name = "vorbisgain-0.37";
@@ -10,7 +10,6 @@ stdenv.mkDerivation rec {
 
   hardeningDisable = [ "format" ];
 
-  nativeBuildInputs = [ unzip ];
   buildInputs = [ libogg libvorbis ];
 
   patchPhase = ''