nixpkgs/pkgs/applications/office/endeavour/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.2 KiB
Nix
Raw Normal View History

2021-05-14 13:35:20 +00:00
{ lib
, stdenv
, fetchFromGitLab
2019-03-16 05:56:57 +00:00
, meson
, ninja
2021-01-17 02:21:50 +00:00
, pkg-config
, wrapGAppsHook4
2019-03-16 05:56:57 +00:00
, gettext
, gnome
2019-03-16 05:56:57 +00:00
, glib
2021-05-14 13:35:20 +00:00
, gtk4
, wayland
, libadwaita
2019-03-16 05:56:57 +00:00
, libpeas
, gnome-online-accounts
, gsettings-desktop-schemas
, evolution-data-server-gtk4
2019-03-16 05:56:57 +00:00
, libical
, itstool
, gitUpdater
2019-03-16 05:56:57 +00:00
}:
2018-08-04 09:54:43 +00:00
2019-03-16 05:56:57 +00:00
stdenv.mkDerivation rec {
pname = "endeavour";
version = "43.0";
2018-08-04 09:54:43 +00:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "Endeavour";
rev = version;
sha256 = "sha256-1mCTw+nJ1w7RdCXfPCO31t1aYOq9Bki3EaXsHiiveD0=";
2018-08-04 09:54:43 +00:00
};
nativeBuildInputs = [
2019-03-16 05:56:57 +00:00
meson
ninja
2021-01-17 02:21:50 +00:00
pkg-config
2019-03-16 05:56:57 +00:00
gettext
wrapGAppsHook4
itstool
2018-08-04 09:54:43 +00:00
];
2019-03-16 05:56:57 +00:00
2018-08-04 09:54:43 +00:00
buildInputs = [
2019-03-16 05:56:57 +00:00
glib
2021-05-14 13:35:20 +00:00
gtk4
wayland # required by gtk header
libadwaita
2019-03-16 05:56:57 +00:00
libpeas
gnome-online-accounts
gsettings-desktop-schemas
gnome.adwaita-icon-theme
2021-05-14 13:35:20 +00:00
2018-08-04 09:54:43 +00:00
# Plug-ins
evolution-data-server-gtk4 # eds
2019-03-16 05:56:57 +00:00
libical
2018-08-04 09:54:43 +00:00
];
passthru = {
updateScript = gitUpdater { };
2018-08-04 09:54:43 +00:00
};
meta = with lib; {
2018-08-04 09:54:43 +00:00
description = "Personal task manager for GNOME";
mainProgram = "endeavour";
homepage = "https://gitlab.gnome.org/World/Endeavour";
2018-08-04 09:54:43 +00:00
license = licenses.gpl3Plus;
maintainers = teams.gnome.members;
2018-08-04 09:54:43 +00:00
platforms = platforms.linux;
};
}