nixpkgs/pkgs/desktops/gnome-3/misc/pomodoro/default.nix

74 lines
1.5 KiB
Nix
Raw Normal View History

2019-04-11 08:24:11 +01:00
{ stdenv
, fetchFromGitHub
, autoconf-archive
, appstream-glib
, pkgconfig
, wrapGAppsHook
, libcanberra
, gst_all_1
, vala
, gtk3
, gom
, sqlite
, libxml2
, autoreconfHook
, glib
, gobject-introspection
, libpeas
, gnome-shell
, gsettings-desktop-schemas
, adwaita-icon-theme
, gettext
}:
stdenv.mkDerivation rec {
2019-09-24 00:12:28 +01:00
pname = "gnome-shell-pomodoro-unstable";
version = "2019-09-15";
src = fetchFromGitHub {
2017-09-04 03:30:25 +01:00
owner = "codito";
repo = "gnome-pomodoro";
2019-09-24 00:12:28 +01:00
rev = "cb1ad32587c209d3322cd1bbc139efa624a4436f";
sha256 = "1zp3z043zzkkn2305s55hnpf9bdzirlzljpzswfh1fj6j4dqlb9k";
};
2017-09-04 03:30:25 +01:00
nativeBuildInputs = [
2019-04-11 08:24:11 +01:00
appstream-glib
autoconf-archive
autoreconfHook
gettext
gobject-introspection
libxml2
pkgconfig
vala
wrapGAppsHook
2017-09-04 03:30:25 +01:00
];
buildInputs = [
2019-04-11 08:24:11 +01:00
adwaita-icon-theme
glib
gnome-shell
gom
gsettings-desktop-schemas
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gstreamer
gtk3
libcanberra
libpeas
sqlite
];
meta = with stdenv.lib; {
2019-04-11 08:24:11 +01:00
homepage = https://gnomepomodoro.org/;
description = "Time management utility for GNOME based on the pomodoro technique";
longDescription = ''
This GNOME utility helps to manage time according to Pomodoro Technique.
It intends to improve productivity and focus by taking short breaks.
'';
2019-04-11 08:24:11 +01:00
maintainers = with maintainers; [ worldofpeace ];
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}