Initial commit.

This commit is contained in:
Storm Dragon
2026-06-02 17:29:55 -04:00
commit db522d7d66
33 changed files with 4017 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
description = "development environment for I38Lock";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
cairo
glib
libev
libxkbcommon
pam
pkg-config
xcbutilxrm
xorg.libX11
xorg.libxcb
xorg.xcbutil
xorg.xcbutilimage
];
};
};
}