mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-04 13:02:01 +02:00
20 lines
237 B
Nix
20 lines
237 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
with pkgs;
|
|
mkShell {
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus
|
|
pulseaudio
|
|
gnome.adwaita-icon-theme
|
|
gtk4
|
|
libadwaita
|
|
gdk-pixbuf
|
|
];
|
|
|
|
}
|