q4wine: init at 1.3.13
Qt GUI application for Wine for managing prefixes and applications. Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
parent
77c929982c
commit
096c956ef7
2 changed files with 39 additions and 0 deletions
37
pkgs/applications/misc/q4wine/default.nix
Normal file
37
pkgs/applications/misc/q4wine/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{ lib, fetchFromGitHub, mkDerivation, cmake, sqlite
|
||||||
|
, qtbase, qtsvg, qttools, wrapQtAppsHook
|
||||||
|
, icoutils # build and runtime deps.
|
||||||
|
, wget, fuseiso, wine, sudo, which # runtime deps.
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "q4wine";
|
||||||
|
version = "1.3.13";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "brezerk";
|
||||||
|
repo = "q4wine";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "04gw5y3dxdpivm2xqacqq85fdzx7xkl0c3h3hdazljb0c3cxxs6h";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
sqlite icoutils qtbase qtsvg qttools
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake wrapQtAppsHook ];
|
||||||
|
|
||||||
|
# Add runtime deps.
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram $out/bin/q4wine \
|
||||||
|
--prefix PATH : ${lib.makeBinPath [ icoutils wget fuseiso wine which ]}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://q4wine.brezblock.org.ua/";
|
||||||
|
description = "A Qt GUI for Wine to manage prefixes and applications";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ rkitover ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -25168,6 +25168,8 @@ with pkgs;
|
||||||
|
|
||||||
gtkpod = callPackage ../applications/audio/gtkpod { };
|
gtkpod = callPackage ../applications/audio/gtkpod { };
|
||||||
|
|
||||||
|
q4wine = libsForQt5.callPackage ../applications/misc/q4wine { };
|
||||||
|
|
||||||
qrcodegen = callPackage ../development/libraries/qrcodegen { };
|
qrcodegen = callPackage ../development/libraries/qrcodegen { };
|
||||||
|
|
||||||
qrencode = callPackage ../development/libraries/qrencode { };
|
qrencode = callPackage ../development/libraries/qrencode { };
|
||||||
|
|
Loading…
Reference in a new issue