forked from mirrors/nixpkgs
Add MyThes
This commit is contained in:
parent
28f0597bd6
commit
38d07f5018
19
pkgs/development/libraries/mythes/default.nix
Normal file
19
pkgs/development/libraries/mythes/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
buildNativeInputs = [ pkgconfig perl ];
|
||||
|
||||
meta = {
|
||||
homepage = http://hunspell.sourceforge.net/;
|
||||
description = "Thesaurus library from Hunspell project";
|
||||
inherit (hunspell.meta) platforms;
|
||||
};
|
||||
}
|
|
@ -4485,6 +4485,8 @@ let
|
|||
|
||||
mysocketw = callPackage ../development/libraries/mysocketw { };
|
||||
|
||||
mythes = callPackage ../development/libraries/mythes { };
|
||||
|
||||
ncurses = makeOverridable (import ../development/libraries/ncurses) {
|
||||
inherit fetchurl;
|
||||
unicode = system != "i686-cygwin";
|
||||
|
|
Loading…
Reference in a new issue