Skip to content

Commit

Permalink
fix: add unzip to mkDenoBinary buildInputs for rt download
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Apr 25, 2024
1 parent cb43403 commit b05d59e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nix/mkDenoBinary.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
lib,
deno,
denoPlatform,
unzip,
}: {
name,
permissions ? {},
Expand All @@ -23,6 +24,7 @@ in
dontFixup = true;

buildPhase = "deno compile ${compileArgs}";
buildInputs = [unzip];
installPhase = "install -Dm755 ${binaryName} $out/bin/${binaryName}";

# default to Deno's platforms
Expand Down

0 comments on commit b05d59e

Please sign in to comment.