WhspBrd/shell.nix
2025-05-28 10:06:10 +02:00

16 lines
250 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
dbus
webkitgtk
openssl
libayatana-appindicator
];
nativeBuildInputs = with pkgs; [
pkg-config
];
dbus = pkgs.dbus;
}