mirror of
https://github.com/JakeStanger/ironbar.git
synced 2024-11-22 23:16:46 +03:00
17 lines
221 B
Nix
17 lines
221 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
cargo
|
||
|
clippy
|
||
|
rustfmt
|
||
|
gtk3
|
||
|
gtk-layer-shell
|
||
|
gcc
|
||
|
openssl
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = with pkgs; [
|
||
|
pkg-config
|
||
|
];
|
||
|
}
|