mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
bc2e4ccf64
Most of the things added will be inputs from larger dependencies.
28 lines
330 B
Nix
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 ];
|
|
}
|