Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
157 lines
3.6 KiB
Nix
157 lines
3.6 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
nixosTests,
|
|
ayatana-indicator-messages,
|
|
cmake,
|
|
dbus,
|
|
dbus-test-runner,
|
|
evolution-data-server,
|
|
glib,
|
|
gst_all_1,
|
|
gtest,
|
|
intltool,
|
|
libaccounts-glib,
|
|
libayatana-common,
|
|
libical,
|
|
libnotify,
|
|
libuuid,
|
|
lomiri,
|
|
pkg-config,
|
|
properties-cpp,
|
|
python3,
|
|
systemd,
|
|
tzdata,
|
|
wrapGAppsHook3,
|
|
}:
|
|
|
|
let
|
|
edsDataDir = "${evolution-data-server}/share";
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ayatana-indicator-datetime";
|
|
version = "24.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AyatanaIndicators";
|
|
repo = "ayatana-indicator-datetime";
|
|
rev = "refs/tags/${finalAttrs.version}";
|
|
hash = "sha256-lY49v2uZ7BawQoN/hmN6pbetHlSGjMHbS6S8Wl1bDmQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Override systemd prefix
|
|
substituteInPlace data/CMakeLists.txt \
|
|
--replace-fail 'pkg_get_variable(SYSTEMD_USER_DIR systemd systemduserunitdir)' 'pkg_get_variable(SYSTEMD_USER_DIR systemd systemduserunitdir DEFINE_VARIABLES prefix=''${CMAKE_INSTALL_PREFIX})' \
|
|
--replace-fail 'XDG_AUTOSTART_DIR "/etc' 'XDG_AUTOSTART_DIR "''${CMAKE_INSTALL_FULL_SYSCONFDIR}'
|
|
|
|
# Looking for Lomiri schemas for code generation
|
|
substituteInPlace src/CMakeLists.txt \
|
|
--replace-fail '/usr/share/accountsservice' '${lomiri.lomiri-schemas}/share/accountsservice'
|
|
'';
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
glib # for schema hook
|
|
intltool
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
ayatana-indicator-messages
|
|
evolution-data-server
|
|
glib
|
|
libaccounts-glib
|
|
libayatana-common
|
|
libical
|
|
libnotify
|
|
libuuid
|
|
properties-cpp
|
|
systemd
|
|
]
|
|
++ (with gst_all_1; [
|
|
gstreamer
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
])
|
|
++ (with lomiri; [
|
|
cmake-extras
|
|
lomiri-schemas
|
|
lomiri-sounds
|
|
lomiri-url-dispatcher
|
|
]);
|
|
|
|
nativeCheckInputs = [
|
|
dbus
|
|
dbus-test-runner
|
|
(python3.withPackages (ps: with ps; [ python-dbusmock ]))
|
|
tzdata
|
|
];
|
|
|
|
checkInputs = [
|
|
dbus-test-runner
|
|
gtest
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "GSETTINGS_LOCALINSTALL" true)
|
|
(lib.cmakeBool "GSETTINGS_COMPILE" true)
|
|
(lib.cmakeBool "ENABLE_LOMIRI_FEATURES" true)
|
|
(lib.cmakeBool "ENABLE_TESTS" finalAttrs.finalPackage.doCheck)
|
|
];
|
|
|
|
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
|
|
|
enableParallelChecking = false;
|
|
|
|
preCheck = ''
|
|
export XDG_DATA_DIRS=${
|
|
lib.strings.concatStringsSep ":" [
|
|
# org.ayatana.common schema
|
|
(glib.passthru.getSchemaDataDirPath libayatana-common)
|
|
|
|
# loading EDS engines to handle ICS-loading
|
|
edsDataDir
|
|
]
|
|
}
|
|
'';
|
|
|
|
# schema is already added automatically by wrapper, EDS needs to be added explicitly
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix XDG_DATA_DIRS : "${edsDataDir}"
|
|
)
|
|
'';
|
|
|
|
passthru = {
|
|
ayatana-indicators = {
|
|
ayatana-indicator-datetime = [
|
|
"ayatana"
|
|
"lomiri"
|
|
];
|
|
};
|
|
tests = {
|
|
inherit (nixosTests) ayatana-indicators;
|
|
};
|
|
updateScript = gitUpdater { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Ayatana Indicator providing clock and calendar";
|
|
longDescription = ''
|
|
This Ayatana Indicator provides a combined calendar, clock, alarm and
|
|
event management tool.
|
|
'';
|
|
homepage = "https://github.com/AyatanaIndicators/ayatana-indicator-datetime";
|
|
changelog = "https://github.com/AyatanaIndicators/ayatana-indicator-datetime/blob/${finalAttrs.version}/ChangeLog";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ OPNA2608 ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|