1
1
Fork 0
mirror of https://github.com/0x5eal/luau-unzip.git synced 2025-04-08 16:20:54 +01:00
luau-unzip/flake.nix

20 lines
431 B
Nix

{
description = "luau-unzip development environment";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-24.11";
};
outputs = { self, nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
devpkgs = import ./dev.nix {
inherit pkgs;
};
in
{
packages.${system}.devShell = devpkgs;
defaultPackage.${system} = devpkgs;
};
}