2021-01-21 17:00:13 +00:00
|
|
|
{lib, stdenv, fetchurl, gtk2, aspell, pkg-config, enchant, intltool}:
|
2007-05-13 14:22:24 +00:00
|
|
|
|
2021-06-20 14:15:21 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gtkspell";
|
|
|
|
version = "2.0.16";
|
2018-10-12 21:20:54 +00:00
|
|
|
|
2007-05-13 14:22:24 +00:00
|
|
|
src = fetchurl {
|
2021-06-20 14:15:21 +00:00
|
|
|
url = "mirror://sourceforge/gtkspell/${pname}-${version}.tar.gz";
|
2013-07-14 00:09:34 +00:00
|
|
|
sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
|
2007-05-13 14:22:24 +00:00
|
|
|
};
|
2018-10-12 21:20:54 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [aspell gtk2 enchant intltool];
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-10-12 21:20:54 +00:00
|
|
|
description = "Word-processor-style highlighting and replacement of misspelled words";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://gtkspell.sourceforge.net";
|
2018-10-12 21:20:54 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl2;
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2007-05-13 14:22:24 +00:00
|
|
|
}
|