3
0
Fork 0
forked from mirrors/nixpkgs

Add gtkspell3

This commit is contained in:
Domen Kožar 2014-01-09 14:21:36 +01:00
parent 6cada7f0c1
commit 2a1ecded4d
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, intltool}:
stdenv.mkDerivation rec {
name = "gtkspell-${version}";
version = "3.0.4";
src = fetchurl {
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz";
sha256 = "19z48gfbraasrxai7qdkxxvky0kwifkkzqz0jqcskhcr1ikqxgzs";
};
buildInputs = [ aspell pkgconfig gtk3 enchant intltool ];
propagatedBuildInputs = [ enchant ];
meta = with stdenv.lib; {
platforms = platforms.linux;
};
}

View file

@ -4544,6 +4544,8 @@ let
gtkspell = callPackage ../development/libraries/gtkspell { };
gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { };
gts = callPackage ../development/libraries/gts { };
gvfs = callPackage ../development/libraries/gvfs { };