flake.nix

This commit is contained in:
2026-01-20 23:55:27 +07:00
parent a79ef6929e
commit 3d77c18c64
2 changed files with 29 additions and 1 deletions
+28
View File
@@ -0,0 +1,28 @@
{
description = "Absinthe wayland compositor";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64_linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
pkg-config
gnumake
gcc
wayland
wayland-protocols
wayland-scanner
wlroots_0_19
pixman
libxkbcommon
];
};
};
}