summary refs log tree commit diff
path: root/pkgs/development/libraries/mythes/default.nix
blob: 8fc160ae11d55110a310d3db2490e6100431836d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, hunspell, pkgconfig, perl }:

stdenv.mkDerivation rec {
  name = "mythes-1.2.3";

  src = fetchurl {
    url = "mirror://sourceforge/hunspell/${name}.tar.gz";
    sha256 = "0f5q7yiwg9bw4a5zxg0dapqdfc2grfb4ss34ifir3mhhy4q3jf4j";
  };

  buildInputs = [ hunspell ];
  nativeBuildInputs = [ pkgconfig perl ];

  meta = {
    homepage = http://hunspell.sourceforge.net/;
    description = "Thesaurus library from Hunspell project";
    inherit (hunspell.meta) platforms;
  };
}