nixpkgs/pkgs/development/libraries/enchant/1.x.nix

23 lines
667 B
Nix
Raw Normal View History

{ stdenv, fetchurl, aspell, pkgconfig, glib, hunspell, hspell }:
stdenv.mkDerivation rec {
version = "1.6.1";
pname = "enchant";
2018-04-17 08:26:39 +00:00
src = fetchurl {
url = "https://github.com/AbiWord/${pname}/releases/download/${pname}-1-6-1/${pname}-${version}.tar.gz";
sha256 = "1xg3m7mniyqyff8qv46jbfwgchb6di6qxdjnd5sfir7jzv0dkw5y";
};
2018-04-17 08:26:39 +00:00
nativeBuildInputs = [ pkgconfig ];
2018-04-17 08:26:39 +00:00
buildInputs = [ aspell glib hunspell hspell ];
2018-10-08 20:37:05 +00:00
meta = with stdenv.lib; {
2018-04-17 08:26:39 +00:00
description = "Generic spell checking library";
homepage = "https://abiword.github.io/enchant";
2018-10-08 20:37:05 +00:00
platforms = platforms.unix;
2019-05-31 02:34:22 +00:00
badPlatforms = [ "x86_64-darwin" ];
2018-10-08 20:37:05 +00:00
license = licenses.lgpl21;
};
}