nixpkgs/pkgs/development/libraries/gtkspell/default.nix

21 lines
599 B
Nix
Raw Normal View History

{stdenv, fetchurl, gtk2, aspell, pkgconfig, enchant, intltool}:
stdenv.mkDerivation {
name = "gtkspell-2.0.16";
2018-10-12 22:20:54 +01:00
src = fetchurl {
url = "mirror://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz";
sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
};
2018-10-12 22:20:54 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [aspell gtk2 enchant intltool];
2018-10-12 22:20:54 +01:00
meta = with stdenv.lib; {
description = "Word-processor-style highlighting and replacement of misspelled words";
homepage = "http://gtkspell.sourceforge.net";
2018-10-12 22:20:54 +01:00
platforms = platforms.unix;
license = licenses.gpl2;
};
}