linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / gtkspell / default.nix
blob78d9956d30a2d8f3efc3b9b0470bfdd3d4c60b37
1 {lib, stdenv, fetchurl, gtk2, aspell, pkg-config, enchant, intltool}:
3 stdenv.mkDerivation {
4   name = "gtkspell-2.0.16";
6   src = fetchurl {
7     url = "mirror://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz";
8     sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
9   };
11   nativeBuildInputs = [ pkg-config ];
12   buildInputs = [aspell gtk2 enchant intltool];
14   meta = with lib; {
15     description = "Word-processor-style highlighting and replacement of misspelled words";
16     homepage = "http://gtkspell.sourceforge.net";
17     platforms = platforms.unix;
18     license = licenses.gpl2;
19   };