add zip to flake

This commit is contained in:
Sebastian Hugentobler 2024-06-24 11:18:44 +02:00
parent 6e91a15ca7
commit bc82090b9b
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0

View File

@ -13,7 +13,14 @@
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
in in
{ {
devShells.default = with pkgs; mkShell { buildInputs = [ deno ]; }; devShells.default =
with pkgs;
mkShell {
buildInputs = [
deno
zip
];
};
} }
); );
} }