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

20 lines
444 B
Nix
Raw 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
{
devShells.default = with pkgs; mkShell { buildInputs = [ deno ]; };
}
);
}