Merge pull request #28 from SuperSandro2000/patch-1
Move unzip to nativeBuildInputs
This commit is contained in:
commit
37e4198762
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ let
|
||||||
buildZipPackage = { name, src }:
|
buildZipPackage = { name, src }:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
inherit name src;
|
inherit name src;
|
||||||
buildInputs = [ unzip ];
|
nativeBuildInputs = [ unzip ];
|
||||||
buildCommand = ''
|
buildCommand = ''
|
||||||
unzip $src
|
unzip $src
|
||||||
baseDir=$(find . -type d -mindepth 1 -maxdepth 1)
|
baseDir=$(find . -type d -mindepth 1 -maxdepth 1)
|
||||||
|
|
Loading…
Reference in a new issue