about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkspell/default.nix
blob: b6ee2c6825d664e2b6aacbca247099b1300f54e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl, gtk2, aspell, pkgconfig, enchant, intltool}:

stdenv.mkDerivation {
  name = "gtkspell-2.0.16";

  src = fetchurl {
    url = "mirror://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz";
    sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [aspell gtk2 enchant intltool];

  meta = with stdenv.lib; {
    description = "Word-processor-style highlighting and replacement of misspelled words";
    homepage = "http://gtkspell.sourceforge.net";
    platforms = platforms.unix;
    license = licenses.gpl2;
  };
}