deepin.dde-qt-dbus-factory: 6.0.0 -> 6.0.1 (#337649)

This commit is contained in:
rewine 2024-08-28 14:41:26 +08:00 committed by GitHub
commit 331fb15627
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,32 +2,30 @@
stdenv,
lib,
fetchFromGitHub,
qmake,
qtbase,
wrapQtAppsHook,
libsForQt5,
python3,
dtkcore,
}:
stdenv.mkDerivation rec {
pname = "dde-qt-dbus-factory";
version = "6.0.0";
version = "6.0.1";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
hash = "sha256-9r5thJJjEZAuDT0N/m1gcr0Faa8WpZOtGKDYuZEvJis=";
hash = "sha256-B9SrApvjTIW2g9VayrmCsWXS9Gkg55Voi1kPP+KYp3s=";
};
nativeBuildInputs = [
qmake
wrapQtAppsHook
libsForQt5.qmake
libsForQt5.wrapQtAppsHook
python3
];
buildInputs = [
qtbase
libsForQt5.qtbase
dtkcore
];
@ -38,17 +36,16 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace libdframeworkdbus/libdframeworkdbus.pro \
--replace "/usr" ""
--replace-fail "/usr" ""
substituteInPlace libdframeworkdbus/DFrameworkdbusConfig.in \
--replace "/usr/include" "$out/include"
--replace-fail "/usr/include" "$out/include"
'';
meta = with lib; {
meta = {
description = "Repo of auto-generated D-Bus source code which DDE used";
homepage = "https://github.com/linuxdeepin/dde-qt-dbus-factory";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = teams.deepin.members;
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = lib.teams.deepin.members;
};
}