add gtk4.nix for gtk development dependencies
This commit is contained in:
commit
fbfe3ea2f7
1 changed files with 24 additions and 0 deletions
24
gtk4.nix
Normal file
24
gtk4.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
# gtk4.nix
|
||||
# Install GTK4/Libadwaita and other dependencies for common Pardus Apps/GTK Development
|
||||
let
|
||||
pkgs = import <nixpkgs> {};
|
||||
in pkgs.mkShell {
|
||||
packages = [
|
||||
pkgs.gtk4
|
||||
pkgs.gobject-introspection
|
||||
pkgs.pkg-config
|
||||
pkgs.libnotify
|
||||
pkgs.libadwaita
|
||||
pkgs.dbus
|
||||
pkgs.apt
|
||||
pkgs.libsoup
|
||||
(pkgs.python3.withPackages (python-pkgs: [
|
||||
python-pkgs.pycairo
|
||||
python-pkgs.pygobject3
|
||||
python-pkgs.pydbus
|
||||
python-pkgs.dbus-python
|
||||
python-pkgs.python-apt
|
||||
python-pkgs.debian
|
||||
]))
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue