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

22 lines
623 B
Nix
Raw Permalink Normal View History

{lib, stdenv, fetchurl, gtk2, aspell, pkg-config, enchant, intltool}:
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
src = fetchurl {
2021-06-20 14:15:21 +00:00
url = "mirror://sourceforge/gtkspell/${pname}-${version}.tar.gz";
sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
};
2018-10-12 21:20:54 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [aspell gtk2 enchant intltool];
meta = with lib; {
2018-10-12 21:20:54 +00:00
description = "Word-processor-style highlighting and replacement of misspelled words";
homepage = "http://gtkspell.sourceforge.net";
2018-10-12 21:20:54 +00:00
platforms = platforms.unix;
license = licenses.gpl2;
};
}