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

21 lines
553 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, hunspell, ncurses, pkg-config, perl }:
2012-08-29 20:35:30 +00:00
stdenv.mkDerivation rec {
2014-09-25 20:35:13 +00:00
name = "mythes-1.2.4";
2012-08-29 20:35:30 +00:00
src = fetchurl {
url = "mirror://sourceforge/hunspell/${name}.tar.gz";
2014-09-25 20:35:13 +00:00
sha256 = "0prh19wy1c74kmzkkavm9qslk99gz8h8wmjvwzjc6lf8v2az708y";
2012-08-29 20:35:30 +00:00
};
buildInputs = [ hunspell ];
nativeBuildInputs = [ ncurses pkg-config perl ];
2012-08-29 20:35:30 +00:00
meta = {
homepage = "http://hunspell.sourceforge.net/";
2012-08-29 20:35:30 +00:00
description = "Thesaurus library from Hunspell project";
license = lib.licenses.bsd3;
2012-08-29 20:35:30 +00:00
inherit (hunspell.meta) platforms;
};
}