sac-route-portal-gpx-fx/flake.nix

27 lines
530 B
Nix
Raw Permalink Normal View History

2024-06-24 08:25:07 +00:00
{
description = "little-hesinde project";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{ nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
2024-06-24 09:18:44 +00:00
devShells.default =
with pkgs;
mkShell {
buildInputs = [
deno
zip
];
};
2024-06-24 08:25:07 +00:00
}
);
}