Skip to content

Commit

Permalink
deepin.dde-qt-dbus-factory: 6.0.0 -> 6.0.1 (#337649)
Browse files Browse the repository at this point in the history
  • Loading branch information
wineee committed Aug 28, 2024
2 parents 781791a + 6853798 commit 331fb15
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions pkgs/desktops/deepin/library/dde-qt-dbus-factory/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
];

Expand All @@ -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;
};
}

0 comments on commit 331fb15

Please sign in to comment.