gtk-examples-python/shell.nix

20 lines
329 B
Nix
Raw Permalink Normal View History

2022-06-17 17:42:29 +03:00
{ 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
]))
];
}