mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-08-16 22:31:03 +02:00
21 lines
No EOL
294 B
Nix
21 lines
No EOL
294 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
cargo
|
|
clippy
|
|
rustfmt
|
|
gtk3
|
|
gtk-layer-shell
|
|
gcc
|
|
openssl
|
|
libdbusmenu-gtk3
|
|
libpulseaudio
|
|
luajit
|
|
luajitPackages.lgi
|
|
];
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
pkg-config
|
|
];
|
|
} |