qt5integration: init at 5.6.4
This commit is contained in:
parent
9ac7f410a9
commit
88d1f28740
@ -10,7 +10,8 @@ let
|
|||||||
dtkgui = callPackage ./library/dtkgui { };
|
dtkgui = callPackage ./library/dtkgui { };
|
||||||
dtkwidget = callPackage ./library/dtkwidget { };
|
dtkwidget = callPackage ./library/dtkwidget { };
|
||||||
qt5platform-plugins = callPackage ./library/qt5platform-plugins { };
|
qt5platform-plugins = callPackage ./library/qt5platform-plugins { };
|
||||||
|
qt5integration = callPackage ./library/qt5integration { };
|
||||||
|
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
lib.makeScope libsForQt5.newScope packages
|
lib.makeScope libsForQt5.newScope packages
|
||||||
|
55
pkgs/desktops/deepin/library/qt5integration/default.nix
Normal file
55
pkgs/desktops/deepin/library/qt5integration/default.nix
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, dtkwidget
|
||||||
|
, qmake
|
||||||
|
, qtbase
|
||||||
|
, qtsvg
|
||||||
|
, pkg-config
|
||||||
|
, wrapQtAppsHook
|
||||||
|
, qtx11extras
|
||||||
|
, qt5platform-plugins
|
||||||
|
, lxqt
|
||||||
|
, mtdev
|
||||||
|
, xorg
|
||||||
|
, gtest
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "qt5integration";
|
||||||
|
version = "5.6.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "linuxdeepin";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-GXxPoBM4tlWezTfv/f+/IJezzcAsuMbr/OOGaSOpn2g=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ qmake pkg-config wrapQtAppsHook ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
dtkwidget
|
||||||
|
qtx11extras
|
||||||
|
qt5platform-plugins
|
||||||
|
mtdev
|
||||||
|
lxqt.libqtxdg
|
||||||
|
xorg.xcbutilrenderutil
|
||||||
|
gtest
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out/${qtbase.qtPluginPrefix}
|
||||||
|
cp -r bin/plugins/* $out/${qtbase.qtPluginPrefix}/
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Qt platform theme integration plugins for DDE";
|
||||||
|
homepage = "https://github.com/linuxdeepin/qt5integration";
|
||||||
|
license = licenses.lgpl3Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = teams.deepin.members;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user