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

22 lines
593 B
Nix
Raw Normal View History

{ stdenv, fetchurl, aspell, pkgconfig, glib, hunspell, hspell }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "1.6.0";
pname = "enchant";
2018-04-17 08:26:39 +00:00
src = fetchurl {
url = "http://www.abisource.com/downloads/${pname}/${version}/${name}.tar.gz";
sha256 = "0zq9yw1xzk8k9s6x83n1f9srzcwdavzazn3haln4nhp9wxxrxb1g";
};
2018-04-17 08:26:39 +00:00
nativeBuildInputs = [ pkgconfig ];
2018-04-17 08:26:39 +00:00
buildInputs = [ aspell glib hunspell hspell ];
meta = {
2018-04-17 08:26:39 +00:00
description = "Generic spell checking library";
homepage = http://www.abisource.com/enchant;
platforms = stdenv.lib.platforms.unix;
};
}