lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at release-16.03-start 22 lines 701 B view raw
1{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, intltool}: 2 3stdenv.mkDerivation rec { 4 name = "gtkspell-${version}"; 5 version = "3.0.7"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz"; 9 sha256 = "1hiwzajf18v9ik4nai3s7frps4ccn9s20nggad1c4k2mwb9ydwhk"; 10 }; 11 12 buildInputs = [ aspell pkgconfig gtk3 enchant intltool ]; 13 propagatedBuildInputs = [ enchant ]; 14 15 meta = { 16 homepage = "http://gtkspell.sourceforge.net/"; 17 description = "Word-processor-style highlighting GtkTextView widget"; 18 license = stdenv.lib.licenses.gpl2Plus; 19 platforms = stdenv.lib.platforms.unix; 20 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 21 }; 22}