2022-03-25 04:24:43 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2019-10-14 17:04:30 +02:00
|
|
|
, fetchurl
|
2022-03-25 04:24:43 +01:00
|
|
|
, fetchpatch
|
2019-10-14 17:04:30 +02:00
|
|
|
, atk
|
|
|
|
, cairo
|
|
|
|
, desktop-file-utils
|
2022-09-20 15:14:28 +02:00
|
|
|
, evolution-data-server-gtk4
|
2020-11-08 14:36:54 +01:00
|
|
|
, evolution
|
2022-08-15 14:03:52 +02:00
|
|
|
, gcr_4
|
2019-10-14 17:04:30 +02:00
|
|
|
, gettext
|
|
|
|
, glib
|
2021-05-07 23:18:14 +02:00
|
|
|
, gnome
|
2019-10-14 17:04:30 +02:00
|
|
|
, gpgme
|
|
|
|
, gtk3
|
2022-08-15 14:03:52 +02:00
|
|
|
, gtksourceview4
|
2019-10-14 17:04:30 +02:00
|
|
|
, gtkspell3
|
|
|
|
, libcryptui
|
|
|
|
, libxml2
|
|
|
|
, meson
|
|
|
|
, ninja
|
2020-09-12 15:37:15 +02:00
|
|
|
, pkg-config
|
|
|
|
, python3
|
2019-10-14 17:04:30 +02:00
|
|
|
, sqlite
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2019-03-07 00:52:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "almanah";
|
2021-03-11 05:14:10 +01:00
|
|
|
version = "0.12.3";
|
2019-03-07 00:52:33 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 06:42:41 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-03-11 05:14:10 +01:00
|
|
|
sha256 = "lMpDQOxlGljP66APR49aPbTZnfrGakbQ2ZcFvmiPMFo=";
|
2019-03-07 00:52:33 +01:00
|
|
|
};
|
|
|
|
|
2022-03-25 04:24:43 +01:00
|
|
|
patches = [
|
|
|
|
# Fix build with meson 0.61
|
|
|
|
# data/meson.build:2:5: ERROR: Function does not take positional arguments.
|
|
|
|
# Patch taken from https://gitlab.gnome.org/GNOME/almanah/-/merge_requests/13
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/almanah/-/commit/8c42a67695621d1e30cec933a04e633e6030bbaf.patch";
|
|
|
|
sha256 = "qyqFgYSu4emFDG/Mjwz1bZb3v3/4gwQSKmGCoPPNYCQ=";
|
|
|
|
})
|
2022-08-15 14:03:52 +02:00
|
|
|
|
|
|
|
# Port to Gcr 4
|
|
|
|
# https://gitlab.gnome.org/GNOME/almanah/-/merge_requests/14
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/almanah/-/commit/cd44b476f4ffbf37c5d5f5b996ecd711db925576.patch";
|
|
|
|
sha256 = "wJ1035NxgeTwUa0LoNcB6TSLxffoXBR3WbGAGkfggYY=";
|
|
|
|
})
|
|
|
|
|
|
|
|
# Port to GtkSourceView 4
|
|
|
|
# https://gitlab.gnome.org/GNOME/almanah/-/merge_requests/15
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/almanah/-/commit/0ba7f05cba7feaf2ae2c220596aead5dfc676675.patch";
|
|
|
|
sha256 = "5uvHTPzQloEq8SVt3EnZ+8mziBdXsDmu/e92/RtyFzE=";
|
|
|
|
})
|
2022-03-25 04:24:43 +01:00
|
|
|
];
|
|
|
|
|
2019-10-14 17:04:30 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
desktop-file-utils
|
|
|
|
gettext
|
|
|
|
libxml2
|
|
|
|
meson
|
|
|
|
ninja
|
2020-09-12 15:37:15 +02:00
|
|
|
pkg-config
|
|
|
|
python3
|
2019-10-14 17:04:30 +02:00
|
|
|
wrapGAppsHook
|
|
|
|
];
|
2019-03-07 00:52:33 +01:00
|
|
|
|
2019-10-14 17:04:30 +02:00
|
|
|
buildInputs = [
|
|
|
|
atk
|
|
|
|
cairo
|
2022-09-20 15:14:28 +02:00
|
|
|
evolution-data-server-gtk4
|
2022-08-15 14:03:52 +02:00
|
|
|
gcr_4
|
2019-10-14 17:04:30 +02:00
|
|
|
glib
|
2020-11-08 14:36:54 +01:00
|
|
|
evolution
|
2019-10-14 17:04:30 +02:00
|
|
|
gpgme
|
|
|
|
gtk3
|
2022-08-15 14:03:52 +02:00
|
|
|
gtksourceview4
|
2019-10-14 17:04:30 +02:00
|
|
|
gtkspell3
|
|
|
|
libcryptui
|
|
|
|
sqlite
|
|
|
|
];
|
2019-03-07 00:52:33 +01:00
|
|
|
|
|
|
|
passthru = {
|
2021-05-07 23:18:14 +02:00
|
|
|
updateScript = gnome.updateScript {
|
2019-03-07 00:52:33 +01:00
|
|
|
packageName = pname;
|
|
|
|
versionPolicy = "none"; # it is quite odd
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-03-07 00:52:33 +01:00
|
|
|
description = "Small GTK application to allow to keep a diary of your life";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Almanah_Diary";
|
2019-03-07 00:52:33 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.unix;
|
2020-04-01 14:40:51 +02:00
|
|
|
maintainers = teams.gnome.members;
|
2019-03-07 00:52:33 +01:00
|
|
|
};
|
|
|
|
}
|