1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-04-20 11:54:23 +02:00
ironbar/shell.nix

18 lines
239 B
Nix
Raw Normal View History

2023-07-26 21:22:19 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
clippy
rustfmt
gtk3
gtk-layer-shell
gcc
openssl
libpulseaudio
2023-07-26 21:22:19 +01:00
];
nativeBuildInputs = with pkgs; [
pkg-config
];
}