qvge: don't use libsForQt5.mkDerivation

+4 -3
+4 -3
pkgs/applications/graphics/qvge/default.nix
··· 1 { lib 2 - , mkDerivation 3 , fetchFromGitHub 4 , substituteAll 5 , qmake 6 , qtsvg 7 , qtx11extras 8 , graphviz 9 }: 10 11 - mkDerivation rec { 12 pname = "qvge"; 13 version = "0.6.3"; 14 ··· 26 inherit graphviz; 27 }); 28 29 - nativeBuildInputs = [ qmake ]; 30 31 buildInputs = if stdenv.isDarwin then [ qtsvg ] else [ qtx11extras ]; 32
··· 1 { lib 2 + , stdenv 3 , fetchFromGitHub 4 , substituteAll 5 + , wrapQtAppsHook 6 , qmake 7 , qtsvg 8 , qtx11extras 9 , graphviz 10 }: 11 12 + stdenv.mkDerivation rec { 13 pname = "qvge"; 14 version = "0.6.3"; 15 ··· 27 inherit graphviz; 28 }); 29 30 + nativeBuildInputs = [ wrapQtAppsHook qmake ]; 31 32 buildInputs = if stdenv.isDarwin then [ qtsvg ] else [ qtx11extras ]; 33