2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, hunspell, ncurses, pkg-config, perl }:
|
2012-08-29 22:35:30 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-25 22:35:13 +02:00
|
|
|
name = "mythes-1.2.4";
|
2012-08-29 22:35:30 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/hunspell/${name}.tar.gz";
|
2014-09-25 22:35:13 +02:00
|
|
|
sha256 = "0prh19wy1c74kmzkkavm9qslk99gz8h8wmjvwzjc6lf8v2az708y";
|
2012-08-29 22:35:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ hunspell ];
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ ncurses pkg-config perl ];
|
2012-08-29 22:35:30 +02:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://hunspell.sourceforge.net/";
|
2012-08-29 22:35:30 +02:00
|
|
|
description = "Thesaurus library from Hunspell project";
|
2021-01-21 18:00:13 +01:00
|
|
|
license = lib.licenses.bsd3;
|
2012-08-29 22:35:30 +02:00
|
|
|
inherit (hunspell.meta) platforms;
|
|
|
|
};
|
|
|
|
}
|