Skip to content

Commit

Permalink
lomiri.lomiri-notifications: 1.3.0 -> 1.3.1 (#374153)
Browse files Browse the repository at this point in the history
  • Loading branch information
OPNA2608 authored Jan 23, 2025
2 parents 5146371 + ddb143a commit cb0b846
Showing 1 changed file with 13 additions and 21 deletions.
34 changes: 13 additions & 21 deletions pkgs/desktops/lomiri/qml/lomiri-notifications/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
stdenv,
lib,
fetchFromGitLab,
fetchpatch,
gitUpdater,
cmake,
dbus,
Expand All @@ -15,35 +14,27 @@

stdenv.mkDerivation (finalAttrs: {
pname = "lomiri-notifications";
version = "1.3.0";
version = "1.3.1";

src = fetchFromGitLab {
owner = "ubports";
repo = "development/core/lomiri-notifications";
rev = finalAttrs.version;
hash = "sha256-EGslfTgfADrmVGhNLG7HWqcDKhu52H/r41j7fxoliko=";
tag = finalAttrs.version;
hash = "sha256-d3fJiYGAYF5e6XPuZ26Lrjj8tUiquunMLDLs9PdAYcA=";
};

patches = [
# Drop use of deprecated qt5_use_modules
# Remove when https://gitlab.com/ubports/development/core/lomiri-notifications/-/merge_requests/11 merged & in release
(fetchpatch {
url = "https://gitlab.com/OPNA2608/lomiri-notifications/-/commit/5d164d6d8d68efe1d14154eca4d0d736ce2a1265.patch";
hash = "sha256-nUg0zUft1n4AlotOaZgDqWbiVDvWvMizdlClavwygoI=";
})
];

postPatch =
''
substituteInPlace CMakeLists.txt \
--replace "\''${CMAKE_INSTALL_LIBDIR}/qt5/qml" "\''${CMAKE_INSTALL_PREFIX}/${qtbase.qtQmlPrefix}"
--replace-fail "\''${CMAKE_INSTALL_LIBDIR}/qt5/qml" "\''${CMAKE_INSTALL_PREFIX}/${qtbase.qtQmlPrefix}"
# Need to replace prefix to not try to install into lomiri-api prefix
substituteInPlace src/CMakeLists.txt \
--replace '--variable=plugindir' '--define-variable=prefix=''${CMAKE_INSTALL_PREFIX} --variable=plugindir'
--replace-fail '--variable=plugindir' '--define-variable=prefix=''${CMAKE_INSTALL_PREFIX} --variable=plugindir'
''
+ lib.optionalString (!finalAttrs.finalPackage.doCheck) ''
sed -i CMakeLists.txt -e '/add_subdirectory(test)/d'
substituteInPlace CMakeLists.txt \
--replace-fail 'add_subdirectory(test)' ""
'';

strictDeps = true;
Expand Down Expand Up @@ -71,7 +62,7 @@ stdenv.mkDerivation (finalAttrs: {

cmakeFlags = [
# In case anything still depends on deprecated hints
"-DENABLE_UBUNTU_COMPAT=ON"
(lib.cmakeBool "ENABLE_UBUNTU_COMPAT" true)
];

doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
Expand All @@ -85,11 +76,12 @@ stdenv.mkDerivation (finalAttrs: {

passthru.updateScript = gitUpdater { };

meta = with lib; {
meta = {
description = "Free Desktop Notification server QML implementation for Lomiri";
homepage = "https://gitlab.com/ubports/development/core/lomiri-notifications";
license = licenses.gpl3Only;
maintainers = teams.lomiri.members;
platforms = platforms.linux;
changelog = "https://gitlab.com/ubports/development/core/lomiri-notifications/-/blob/${finalAttrs.version}/ChangeLog";
license = lib.licenses.gpl3Only;
maintainers = lib.teams.lomiri.members;
platforms = lib.platforms.linux;
};
})

0 comments on commit cb0b846

Please sign in to comment.