python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / gtkspell / default.nix
blob6f48ba4e26687ca76beba79328aa4d03ca51a0c0
1 {lib, stdenv, fetchurl, gtk2, aspell, pkg-config, enchant, intltool}:
3 stdenv.mkDerivation rec {
4   pname = "gtkspell";
5   version = "2.0.16";
7   src = fetchurl {
8     url = "mirror://sourceforge/gtkspell/${pname}-${version}.tar.gz";
9     sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
10   };
12   nativeBuildInputs = [ pkg-config intltool ];
13   buildInputs = [aspell gtk2 enchant];
15   meta = with lib; {
16     description = "Word-processor-style highlighting and replacement of misspelled words";
17     homepage = "http://gtkspell.sourceforge.net";
18     platforms = platforms.unix;
19     license = licenses.gpl2;
20   };