mirror of
https://github.com/JakeStanger/ironbar.git
synced 2024-11-22 05:34:35 +03:00
30de23dc64
Also adds tooltips
21 lines
294 B
Nix
21 lines
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
|
|
];
|
|
} |