This commit is contained in:
2026-06-21 20:04:10 -06:00
parent 5d2eafb879
commit dab92f1e85
4 changed files with 89 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
sydpkgs.url = "git+https://git.deertopia.net/msyds/sydpkgs?ref=lad";
};
outputs = inputs:
let
system = "x86_64-linux";
pkgs = import inputs.nixpkgs {
inherit system;
};
in {
devShells.${system}.default = pkgs.mkShell {
packages = [
(pkgs.lua5_1.withPackages (ps: with ps; [
lpeg
]))
];
};
};
}