gnome3.gnome-clocks: 3.34.0 -> 3.36.0
Now depends on libhandy.
This commit is contained in:
parent
2dedcce494
commit
bc21a3542a
1 changed files with 48 additions and 10 deletions
|
@ -1,16 +1,37 @@
|
||||||
{ stdenv, fetchurl
|
{ stdenv
|
||||||
, meson, ninja, gettext, pkgconfig, wrapGAppsHook, itstool, desktop-file-utils
|
, fetchurl
|
||||||
, vala, gobject-introspection, libxml2, gtk3, glib, gsound, sound-theme-freedesktop
|
, meson
|
||||||
, gsettings-desktop-schemas, adwaita-icon-theme, gnome-desktop, geocode-glib
|
, ninja
|
||||||
, gnome3, gdk-pixbuf, geoclue2, libgweather }:
|
, gettext
|
||||||
|
, pkgconfig
|
||||||
|
, wrapGAppsHook
|
||||||
|
, itstool
|
||||||
|
, desktop-file-utils
|
||||||
|
, vala
|
||||||
|
, gobject-introspection
|
||||||
|
, libxml2
|
||||||
|
, gtk3
|
||||||
|
, glib
|
||||||
|
, gsound
|
||||||
|
, sound-theme-freedesktop
|
||||||
|
, gsettings-desktop-schemas
|
||||||
|
, adwaita-icon-theme
|
||||||
|
, gnome-desktop
|
||||||
|
, geocode-glib
|
||||||
|
, gnome3
|
||||||
|
, gdk-pixbuf
|
||||||
|
, geoclue2
|
||||||
|
, libgweather
|
||||||
|
, libhandy
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gnome-clocks";
|
pname = "gnome-clocks";
|
||||||
version = "3.34.0";
|
version = "3.36.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/gnome-clocks/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
url = "mirror://gnome/sources/gnome-clocks/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "0g7hjk55smhkd09hwa9kag3h5a12l494wj89w9smpdk3ghsmy6b1";
|
sha256 = "1ij9xwp3c96gsnnlhkqkiw3y45a4lpw7a09d4yysx7bvgw68p5sc";
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
@ -23,12 +44,29 @@ stdenv.mkDerivation rec {
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
vala meson ninja pkgconfig gettext itstool wrapGAppsHook desktop-file-utils libxml2
|
vala
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkgconfig
|
||||||
|
gettext
|
||||||
|
itstool
|
||||||
|
wrapGAppsHook
|
||||||
|
desktop-file-utils
|
||||||
|
libxml2
|
||||||
gobject-introspection # for finding vapi files
|
gobject-introspection # for finding vapi files
|
||||||
];
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk3 glib gsettings-desktop-schemas gdk-pixbuf adwaita-icon-theme
|
gtk3
|
||||||
gnome-desktop geocode-glib geoclue2 libgweather gsound
|
glib
|
||||||
|
gsettings-desktop-schemas
|
||||||
|
gdk-pixbuf
|
||||||
|
adwaita-icon-theme
|
||||||
|
gnome-desktop
|
||||||
|
geocode-glib
|
||||||
|
geoclue2
|
||||||
|
libgweather
|
||||||
|
gsound
|
||||||
|
libhandy
|
||||||
];
|
];
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
|
|
Loading…
Reference in a new issue