From c3f148b3a8fc567f0ee2c616bcfc570645675558 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 10 Jan 2014 01:17:04 +0100 Subject: [PATCH] gnome3.gnome-dictionary: 3.5.2 -> 3.10.0 --- pkgs/desktops/gnome-3/default.nix | 2 +- .../gnome-3/desktop/gnome-dictionary/default.nix | 15 ++++++++++----- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/gnome-3/default.nix b/pkgs/desktops/gnome-3/default.nix index f9f9fa67d8ea..7154fab994c1 100644 --- a/pkgs/desktops/gnome-3/default.nix +++ b/pkgs/desktops/gnome-3/default.nix @@ -47,7 +47,7 @@ rec { libpeas = callPackage ./core/libpeas {}; - libgweather = callPackage ./core/libgweather { }; + libgweather = callPackage ./core/libgweather { libsoup = pkgs.libsoup_2_44; }; nautilus = callPackage ./core/nautilus { }; diff --git a/pkgs/desktops/gnome-3/desktop/gnome-dictionary/default.nix b/pkgs/desktops/gnome-3/desktop/gnome-dictionary/default.nix index 7a1ab5b1505a..3e952f99eb01 100644 --- a/pkgs/desktops/gnome-3/desktop/gnome-dictionary/default.nix +++ b/pkgs/desktops/gnome-3/desktop/gnome-dictionary/default.nix @@ -1,15 +1,20 @@ { stdenv, fetchurl, pkgconfig, gnome3, gnome_doc_utils, intltool, which -, libxml2, libxslt }: +, libxml2, libxslt, itstool }: stdenv.mkDerivation rec { - version = "3.5.2"; + version = "3.10.0"; name = "gnome-dictionary-${version}"; src = fetchurl { - url = "mirror://gnome/sources/gnome-dictionary/3.5/${name}.tar.xz"; - sha256 = "1cq32csxn27vir5nlixx337ym2nal9ykq3s1j7yynh2adh4m0jil"; + url = "mirror://gnome/sources/gnome-dictionary/3.10/${name}.tar.xz"; + sha256 = "1mqf6ln0cgrw12n9fg81sjbhavrgzvvq7fy3gl55il7pa3z612r5"; }; buildInputs = [ gnome3.gtk ]; - nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libxml2 libxslt gnome3.scrollkeeper ]; + nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libxml2 libxslt itstool ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + }; + }