depot/third_party/nixpkgs/pkgs/development/libraries/gtkspell/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
599 B
Nix

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