mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-12 16:03:32 +00:00
02fe8cbd31
This was added only to build hunspellDicts.de_DE: [1] The patches came from an older PR (taken from Debian): [2] but aren't needed to build the dictionary. [1]: https://github.com/NixOS/nixpkgs/pull/36155 [2]: https://github.com/NixOS/nixpkgs/pull/3320
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, bison, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ispell";
|
|
version = "3.4.00";
|
|
|
|
src = fetchurl {
|
|
url = "http://fmg-www.cs.ucla.edu/geoff/tars/${pname}-${version}.tar.gz";
|
|
sha256 = "1hmfnz55qzfpz7lz0r3m4kkv31smir92ks9s5l1iiwimhr2jxi2x";
|
|
};
|
|
|
|
buildInputs = [ bison ncurses ];
|
|
|
|
postPatch = ''
|
|
cat >> local.h <<EOF
|
|
${lib.optionalString (!stdenv.isDarwin) "#define USG"}
|
|
#define TERMLIB "-lncurses"
|
|
#define LANGUAGES "{american,MASTERDICTS=american.med,HASHFILES=americanmed.hash}"
|
|
#define MASTERHASH "americanmed.hash"
|
|
#define BINDIR "$out/bin"
|
|
#define LIBDIR "$out/lib"
|
|
#define ELISPDIR "{$out}/share/emacs/site-lisp"
|
|
#define TEXINFODIR "$out/share/info"
|
|
#define MAN1DIR "$out/share/man/man1"
|
|
#define MAN4DIR "$out/share/man/man4"
|
|
#define MAN45DIR "$out/share/man/man5"
|
|
#define MINIMENU
|
|
#define HAS_RENAME
|
|
EOF
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An interactive spell-checking program for Unix";
|
|
homepage = "https://www.cs.hmc.edu/~geoff/ispell.html";
|
|
license = licenses.free;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|