nixos-config/shells/gtk.nix
Gabriel Arazas bc2e4ccf64 shells: add dependencies
Most of the things added will be inputs from larger dependencies.
2022-11-10 22:08:22 +08:00

28 lines
330 B
Nix

{ mkShell
, wrapGAppsHook
, desktop-file-utils
, glib
, appstream-glib
, blueprint-compiler
, libadwaita
, libportal
, libportal-gtk
, gtk
}:
mkShell {
packages = [
gtk
glib
appstream-glib
desktop-file-utils
blueprint-compiler
libadwaita
libportal
libportal-gtk
];
inputsFrom = [ gtk ];
}