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

23 lines
645 B
Nix
Raw Normal View History

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