87 lines
1.5 KiB
Nix
87 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, meson
|
|
, ninja
|
|
, gettext
|
|
, fetchurl
|
|
, pkg-config
|
|
, wrapGAppsHook
|
|
, itstool
|
|
, desktop-file-utils
|
|
, python3
|
|
, glib
|
|
, gtk3
|
|
, evolution-data-server
|
|
, gnome-online-accounts
|
|
, libuuid
|
|
, libhandy_0
|
|
, webkitgtk
|
|
, zeitgeist
|
|
, gnome3
|
|
, libxml2
|
|
, gsettings-desktop-schemas
|
|
, tracker
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-notes";
|
|
version = "3.38.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/bijiben/${lib.versions.majorMinor version}/bijiben-${version}.tar.xz";
|
|
sha256 = "H/bMCsbGKQe/KgmhchXt0vF7dNrKs6XIminDBJFyvis=";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
postPatch = ''
|
|
chmod +x build-aux/meson_post_install.py
|
|
patchShebangs build-aux/meson_post_install.py
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gettext
|
|
itstool
|
|
libxml2
|
|
desktop-file-utils
|
|
python3
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk3
|
|
libuuid
|
|
libhandy_0 # doesn't support libhandy-1 yet
|
|
webkitgtk
|
|
tracker
|
|
gnome-online-accounts
|
|
zeitgeist
|
|
gsettings-desktop-schemas
|
|
evolution-data-server
|
|
gnome3.adwaita-icon-theme
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dzeitgeist=true"
|
|
"-Dupdate_mimedb=false"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = "bijiben";
|
|
attrPath = "gnome3.gnome-notes";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Note editor designed to remain simple to use";
|
|
homepage = "https://wiki.gnome.org/Apps/Notes";
|
|
license = licenses.gpl3;
|
|
maintainers = teams.gnome.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|