trying to get pyside working with qt

This commit is contained in:
talksik
2023-07-30 13:35:13 -07:00
parent 2e673eefb7
commit 97a22fbeb8
+6 -13
View File
@@ -9,7 +9,6 @@ pkgs.mkShell {
git git
gh gh
curl curl
python39
podman podman
tmux tmux
go go
@@ -44,17 +43,14 @@ pkgs.mkShell {
gst_all_1.gst-libav gst_all_1.gst-libav
gst_all_1.gst-vaapi gst_all_1.gst-vaapi
qt6.full
mesa
libGL
gst_all_1.gstreamermm
libxkbcommon # for qt
fzf fzf
];
nativeBuildInputs = with pkgs; [ python311
pkg-config python311Packages.pyside6
python311Packages.xapp
python311Packages.pip
python311Packages.shiboken6
qt6.full
]; ];
shellHook = '' shellHook = ''
@@ -62,8 +58,5 @@ pkgs.mkShell {
''; '';
MY_ENVIRONMENT_VARIABLE = "world"; MY_ENVIRONMENT_VARIABLE = "world";
# for runtime linking of libraries
#LD_LIBRARY_PATH = "${stdenv.lib.makeLibraryPath buildInputs}:${LD_LIBRARY_PATH}";
} }