mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
gnome3.gnome-clocks: fix build
This commit is contained in:
parent
a0d41635ee
commit
31293136fa
@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl
|
||||
, meson, ninja, gettext, pkgconfig, wrapGAppsHook, itstool, desktop-file-utils
|
||||
, vala, gtk3, glib, gsound
|
||||
, vala, gobjectIntrospection, libxml2, gtk3, glib, gsound
|
||||
, gnome3, gdk_pixbuf, geoclue2, libgweather }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -13,21 +13,23 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript { packageName = "gnome-clocks"; attrPath = "gnome3.gnome-clocks"; };
|
||||
updateScript = gnome3.updateScript {
|
||||
packageName = "gnome-clocks";
|
||||
attrPath = "gnome3.gnome-clocks";
|
||||
};
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
vala meson ninja pkgconfig gettext itstool wrapGAppsHook desktop-file-utils
|
||||
vala meson ninja pkgconfig gettext itstool wrapGAppsHook desktop-file-utils libxml2
|
||||
gobjectIntrospection # for finding vapi files
|
||||
];
|
||||
buildInputs = [
|
||||
gtk3 glib gnome3.gsettings-desktop-schemas gdk_pixbuf gnome3.defaultIconTheme
|
||||
gnome3.gnome-desktop gnome3.geocode-glib geoclue2 libgweather gsound
|
||||
];
|
||||
|
||||
prePatch = "patchShebangs build-aux/";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/Apps/Clocks;
|
||||
description = "Clock application designed for GNOME 3";
|
||||
|
Loading…
Reference in New Issue
Block a user