Compare commits

...

3 Commits
0.9 ... main

2 changed files with 13 additions and 1 deletions

View File

@ -26,3 +26,8 @@ Take a look at their
## Contributors ## Contributors
- wizche - wizche
- [Michal Bryxí](mailto:michal.bryxi@gmail.com)
## Contact
For issue reporting contact me at [shu+gpx@vanwa.ch](mailto:shu+gpx@vanwa.ch)

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
];
};
} }
); );
} }