ironbar/shell.nix
2024-03-30 23:31:28 +00:00

18 lines
239 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
clippy
rustfmt
gtk3
gtk-layer-shell
gcc
openssl
libpulseaudio
];
nativeBuildInputs = with pkgs; [
pkg-config
];
}