# Please enter the commit message for your changes. Lines starting
This commit is contained in:
nora 2025-12-26 21:28:43 +01:00
commit 39be4753e4
7 changed files with 925 additions and 0 deletions

17
shell.nix Normal file
View file

@ -0,0 +1,17 @@
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
nativeBuildInputs = [ pkgs.pkg-config ];
packages = [
pkgs.gtk4
pkgs.gtk4-layer-shell
pkgs.atk
pkgs.glib
pkgs.gdk-pixbuf
pkgs.libadwaita
pkgs.webkitgtk_6_0
pkgs.gst_all_1.gstreamer
pkgs.gst_all_1.gst-plugins-base
pkgs.gst_all_1.gst-plugins-good
pkgs.gst_all_1.gst-plugins-bad
];
}