q4wine: init at 1.3.13

Qt GUI application for Wine for managing prefixes and applications.

Signed-off-by: Rafael Kitover <rkitover@gmail.com>

+39
+37
pkgs/applications/misc/q4wine/default.nix
··· 1 + { lib, fetchFromGitHub, mkDerivation, cmake, sqlite 2 + , qtbase, qtsvg, qttools, wrapQtAppsHook 3 + , icoutils # build and runtime deps. 4 + , wget, fuseiso, wine, sudo, which # runtime deps. 5 + }: 6 + 7 + mkDerivation rec { 8 + pname = "q4wine"; 9 + version = "1.3.13"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "brezerk"; 13 + repo = "q4wine"; 14 + rev = "v${version}"; 15 + sha256 = "04gw5y3dxdpivm2xqacqq85fdzx7xkl0c3h3hdazljb0c3cxxs6h"; 16 + }; 17 + 18 + buildInputs = [ 19 + sqlite icoutils qtbase qtsvg qttools 20 + ]; 21 + 22 + nativeBuildInputs = [ cmake wrapQtAppsHook ]; 23 + 24 + # Add runtime deps. 25 + postInstall = '' 26 + wrapProgram $out/bin/q4wine \ 27 + --prefix PATH : ${lib.makeBinPath [ icoutils wget fuseiso wine which ]} 28 + ''; 29 + 30 + meta = with lib; { 31 + homepage = "https://q4wine.brezblock.org.ua/"; 32 + description = "A Qt GUI for Wine to manage prefixes and applications"; 33 + license = licenses.gpl3; 34 + maintainers = with maintainers; [ rkitover ]; 35 + platforms = platforms.unix; 36 + }; 37 + }
+2
pkgs/top-level/all-packages.nix
··· 25168 25168 25169 25169 gtkpod = callPackage ../applications/audio/gtkpod { }; 25170 25170 25171 + q4wine = libsForQt5.callPackage ../applications/misc/q4wine { }; 25172 + 25171 25173 qrcodegen = callPackage ../development/libraries/qrcodegen { }; 25172 25174 25173 25175 qrencode = callPackage ../development/libraries/qrencode { };