lol

gtkspell3: update from 3.0.4 to 3.0.6

+10 -6
+10 -6
pkgs/development/libraries/gtkspell/3.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "gtkspell-${version}"; 5 - version = "3.0.4"; 6 - 5 + version = "3.0.6"; 6 + 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz"; 9 - sha256 = "19z48gfbraasrxai7qdkxxvky0kwifkkzqz0jqcskhcr1ikqxgzs"; 9 + sha256 = "1hqaddgzxjw9lpsphankld6a8bpm92hfv46kp99cgmj82rdjwdq1"; 10 10 }; 11 - 11 + 12 12 buildInputs = [ aspell pkgconfig gtk3 enchant intltool ]; 13 13 propagatedBuildInputs = [ enchant ]; 14 14 15 - meta = with stdenv.lib; { 16 - platforms = platforms.linux; 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 ]; 17 21 }; 18 22 }