3
0
Fork 0
forked from mirrors/nixpkgs

gtk-spell: add meta data

This commit is contained in:
Markus Kowalewski 2018-10-12 23:20:54 +02:00
parent aed19d59ae
commit 59e9c12db3
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -2,16 +2,19 @@
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 = {
platforms = stdenv.lib.platforms.unix;
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;
};
}