nix: add packaging; update devshell

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I9f1ddf6dbd141b5a85b4b5a36c2c9a586a6a6964
This commit is contained in:
raf 2026-01-03 12:36:04 +03:00
commit d402e6e300
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
4 changed files with 83 additions and 10 deletions

View file

@ -27,7 +27,7 @@ pkgs.mkShell {
glibc.dev
# For Tests
(python313.withPackages (ps: with ps; [matplotlib pyplot numpy]))
(python313.withPackages (ps: with ps; [matplotlib numpy]))
];
nativeBuildInputs = with pkgs; [
@ -47,8 +47,5 @@ pkgs.mkShell {
'';
# Environment variables for the build system
env = {
CHROMA_VERSION = "1.0.0";
WAYLAND_DEBUG = 1;
};
env.WAYLAND_DEBUG = 1;
}