mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-08-17 14:51:04 +02:00
26 lines
426 B
Nix
26 lines
426 B
Nix
|
{
|
||
|
perSystem = { pkgs, ... }: {
|
||
|
devShells.default = pkgs.mkShell {
|
||
|
packages = with pkgs; [
|
||
|
cargo
|
||
|
clippy
|
||
|
rustfmt
|
||
|
gtk3
|
||
|
gtk-layer-shell
|
||
|
gcc
|
||
|
openssl
|
||
|
libdbusmenu-gtk3
|
||
|
libpulseaudio
|
||
|
libinput
|
||
|
libevdev
|
||
|
luajit
|
||
|
luajitPackages.lgi
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = with pkgs; [
|
||
|
pkg-config
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|