nixpkgs/pkgs/development/libraries/gtkspell/3.nix

23 lines
701 B
Nix
Raw Normal View History

2014-01-09 13:21:36 +00:00
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, intltool}:
stdenv.mkDerivation rec {
name = "gtkspell-${version}";
2015-03-24 22:46:35 +00:00
version = "3.0.7";
2014-09-21 17:30:15 +00:00
2014-01-09 13:21:36 +00:00
src = fetchurl {
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz";
2015-03-24 22:46:35 +00:00
sha256 = "1hiwzajf18v9ik4nai3s7frps4ccn9s20nggad1c4k2mwb9ydwhk";
2014-01-09 13:21:36 +00:00
};
2014-09-21 17:30:15 +00:00
2014-01-09 13:21:36 +00:00
buildInputs = [ aspell pkgconfig gtk3 enchant intltool ];
propagatedBuildInputs = [ enchant ];
2014-09-21 17:30:15 +00:00
meta = {
homepage = "http://gtkspell.sourceforge.net/";
description = "Word-processor-style highlighting GtkTextView widget";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
2014-01-09 13:21:36 +00:00
};
}