gtkhtml: added gnome3 4.6 version

This commit is contained in:
Luca Bruno 2014-04-24 17:41:00 +02:00
parent 5d5bc8a037
commit e1c448e91a
2 changed files with 19 additions and 0 deletions

View file

@ -184,4 +184,6 @@ rec {
gexiv2 = callPackage ./misc/gexiv2 { };
gnome-tweak-tool = callPackage ./misc/gnome-tweak-tool { };
gtkhtml = callPackage ./misc/gtkhtml { };
}

View file

@ -0,0 +1,17 @@
{ stdenv, fetchurl, pkgconfig, gtk3, intltool
, gnome3, enchant, isocodes }:
stdenv.mkDerivation rec {
name = "gtkhtml-4.6.6";
src = fetchurl {
url = "mirror://gnome/sources/gtkhtml/4.6/${name}.tar.xz";
sha256 = "145d23bbe729ff4ee7e7027bb5ff405b34822271327fdd81fe913134831374cd";
};
buildInputs = [ pkgconfig gtk3 intltool gnome3.gnome_icon_theme
gnome3.gsettings_desktop_schemas ];
propagatedBuildInputs = [ enchant isocodes ];
}