Merge pull request from SuperSandro2000/patch-1

Move unzip to nativeBuildInputs
This commit is contained in:
Sander van der Burg 2022-02-18 22:31:13 +01:00 committed by GitHub
commit 37e4198762
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ let
buildZipPackage = { name, src }:
stdenv.mkDerivation {
inherit name src;
buildInputs = [ unzip ];
nativeBuildInputs = [ unzip ];
buildCommand = ''
unzip $src
baseDir=$(find . -type d -mindepth 1 -maxdepth 1)