gnome3.gnome-dictionary: 3.5.2 -> 3.10.0

This commit is contained in:
Domen Kožar 2014-01-10 01:17:04 +01:00
parent 401dcc6715
commit c3f148b3a8
2 changed files with 11 additions and 6 deletions

View file

@ -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 { };

View file

@ -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;
};
}