23 lines
701 B
Nix
23 lines
701 B
Nix
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, intltool}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gtkspell-${version}";
|
|
version = "3.0.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz";
|
|
sha256 = "1hiwzajf18v9ik4nai3s7frps4ccn9s20nggad1c4k2mwb9ydwhk";
|
|
};
|
|
|
|
buildInputs = [ aspell pkgconfig gtk3 enchant intltool ];
|
|
propagatedBuildInputs = [ enchant ];
|
|
|
|
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 ];
|
|
};
|
|
}
|