depot/third_party/nixpkgs/pkgs/development/libraries/gtkspell/default.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

21 lines
623 B
Nix

{lib, stdenv, fetchurl, gtk2, aspell, pkg-config, enchant, intltool}:
stdenv.mkDerivation rec {
pname = "gtkspell";
version = "2.0.16";
src = fetchurl {
url = "mirror://sourceforge/gtkspell/${pname}-${version}.tar.gz";
sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
};
nativeBuildInputs = [ pkg-config intltool ];
buildInputs = [aspell gtk2 enchant];
meta = with lib; {
description = "Word-processor-style highlighting and replacement of misspelled words";
homepage = "http://gtkspell.sourceforge.net";
platforms = platforms.unix;
license = licenses.gpl2;
};
}