mirror of
https://github.com/Afacanc38/gtk-examples-python.git
synced 2024-11-17 03:55:05 +03:00
20 lines
329 B
Nix
20 lines
329 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
name = "gtk-examples-python";
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkgs.gobject-introspection
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
pkgs.gtk3
|
||
|
pkgs.libhandy
|
||
|
pkgs.libadwaita
|
||
|
pkgs.gst_all_1.gstreamer
|
||
|
(pkgs.python3.withPackages (p: with p; [
|
||
|
pygobject3 gst-python
|
||
|
]))
|
||
|
];
|
||
|
}
|