69698ec11c
* gnome3: only maintain single GNOME 3 package set GNOME 3 was split into 3.10 and 3.12 in #2694. Unfortunately, we barely have the resources to update a single version of GNOME. Maintaining multiple versions just does not make sense. Additionally, it makes viewing history using most Git tools bothersome. This commit renames `pkgs/desktops/gnome-3/3.24` to `pkgs/desktops/gnome-3`, removes the config variable for choosing packageset (`environment.gnome3.packageSet`), updates the hint in maintainer script, and removes the `gnome3_24` derivation from `all-packages.nix`. Closes: #29329 * maintainers/scripts/gnome: Use fixed GNOME 3 directory Since we now allow only a single GNOME 3 package set, specifying the working directory is not necessary. This commit sets the directory to `pkgs/desktops/gnome-3`.
51 lines
1.6 KiB
Nix
51 lines
1.6 KiB
Nix
{ stdenv, fetchFromGitHub, which, intltool, pkgconfig, libtool, makeWrapper,
|
|
dbus_glib, libcanberra_gtk2, gst_all_1, vala_0_32, gnome3, gtk3, gst-plugins-base,
|
|
glib, gobjectIntrospection, telepathy_glib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.11.2";
|
|
name = "gnome-shell-pomodoro-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "codito";
|
|
repo = "gnome-pomodoro";
|
|
rev = "${version}";
|
|
sha256 = "0x656drq8vnvdj1x6ghnglgpa0z8yd2yj9dh5iqprwjv0z3qkw4l";
|
|
};
|
|
|
|
configureScript = ''./autogen.sh'';
|
|
|
|
buildInputs = [
|
|
which intltool glib gobjectIntrospection pkgconfig libtool
|
|
makeWrapper dbus_glib libcanberra_gtk2 vala_0_32 gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
|
|
gnome3.gsettings_desktop_schemas gnome3.gnome_desktop
|
|
gnome3.gnome_common gnome3.gnome_shell gtk3 telepathy_glib
|
|
gnome3.defaultIconTheme
|
|
];
|
|
|
|
preBuild = ''
|
|
sed -i 's|\$(INTROSPECTION_GIRDIR)|${gnome3.gnome_desktop}/share/gir-1.0|' \
|
|
vapi/Makefile
|
|
'';
|
|
|
|
preFixup = ''
|
|
wrapProgram $out/bin/gnome-pomodoro \
|
|
--prefix XDG_DATA_DIRS : \
|
|
"$out/share:$GSETTINGS_SCHEMAS_PATH:$XDG_DATA_DIRS"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/codito/gnome-shell-pomodoro;
|
|
description = "A 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.
|
|
'';
|
|
maintainers = with maintainers; [ jgeerds ];
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|