From 97a22fbeb8521003f143ad9b804e79a147facd0f Mon Sep 17 00:00:00 2001 From: talksik Date: Sun, 30 Jul 2023 13:35:13 -0700 Subject: [PATCH] trying to get pyside working with qt --- shell.nix | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/shell.nix b/shell.nix index 61fe0b8..0359eeb 100644 --- a/shell.nix +++ b/shell.nix @@ -9,7 +9,6 @@ pkgs.mkShell { git gh curl - python39 podman tmux go @@ -44,17 +43,14 @@ pkgs.mkShell { gst_all_1.gst-libav gst_all_1.gst-vaapi - qt6.full - mesa - libGL - gst_all_1.gstreamermm - libxkbcommon # for qt - fzf - ]; - nativeBuildInputs = with pkgs; [ - pkg-config + python311 + python311Packages.pyside6 + python311Packages.xapp + python311Packages.pip + python311Packages.shiboken6 + qt6.full ]; shellHook = '' @@ -62,8 +58,5 @@ pkgs.mkShell { ''; MY_ENVIRONMENT_VARIABLE = "world"; - - # for runtime linking of libraries - #LD_LIBRARY_PATH = "${stdenv.lib.makeLibraryPath buildInputs}:${LD_LIBRARY_PATH}"; }