3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/gnome-3/apps/gnome-clocks/default.nix

49 lines
1.4 KiB
Nix
Raw Normal View History

2017-10-04 22:50:14 +01:00
{ stdenv, fetchurl
, meson, ninja, gettext, pkgconfig, wrapGAppsHook, itstool, desktop-file-utils
, vala, gobject-introspection, libxml2, gtk3, glib, gsound, sound-theme-freedesktop
2019-02-13 21:47:50 +00:00
, gsettings-desktop-schemas, adwaita-icon-theme, gnome-desktop, geocode-glib
2019-05-22 12:03:39 +01:00
, gnome3, gdk-pixbuf, geoclue2, libgweather }:
stdenv.mkDerivation rec {
name = "gnome-clocks-${version}";
2019-03-10 14:44:57 +00:00
version = "3.32.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-clocks/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
2019-03-10 14:44:57 +00:00
sha256 = "1w6lgjdak3x76c9gyhd1lqrdmjfh8q77sjnrkcimylsg0jq913bc";
};
passthru = {
2018-03-14 05:15:34 +00:00
updateScript = gnome3.updateScript {
packageName = "gnome-clocks";
attrPath = "gnome3.gnome-clocks";
};
};
doCheck = true;
2017-12-17 02:07:37 +00:00
nativeBuildInputs = [
2018-03-14 05:15:34 +00:00
vala meson ninja pkgconfig gettext itstool wrapGAppsHook desktop-file-utils libxml2
gobject-introspection # for finding vapi files
2017-12-17 02:07:37 +00:00
];
buildInputs = [
2019-05-22 12:03:39 +01:00
gtk3 glib gsettings-desktop-schemas gdk-pixbuf adwaita-icon-theme
2019-02-13 21:47:50 +00:00
gnome-desktop geocode-glib geoclue2 libgweather gsound
2017-12-17 02:07:37 +00:00
];
preFixup = ''
gappsWrapperArgs+=(
# Fallback sound theme
--prefix XDG_DATA_DIRS : "${sound-theme-freedesktop}/share"
)
'';
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Clocks;
description = "Clock application designed for GNOME 3";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}