b189247ba0
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
48 lines
1.6 KiB
Nix
48 lines
1.6 KiB
Nix
{stdenv, fetchurl, tcl, tk, xlibsWrapper, makeWrapper}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.0";
|
|
name = "wordnet-${version}";
|
|
src = fetchurl {
|
|
url = "http://wordnetcode.princeton.edu/${version}/WordNet-${version}.tar.bz2";
|
|
sha256 = "08pgjvd2vvmqk3h641x63nxp7wqimb9r30889mkyfh2agc62sjbc";
|
|
};
|
|
|
|
buildInputs = [tcl tk xlibsWrapper makeWrapper];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
patchPhase = ''
|
|
sed "13i#define USE_INTERP_RESULT 1" -i src/stubs.c
|
|
'';
|
|
|
|
# Needs the path to `tclConfig.sh' and `tkConfig.sh'.
|
|
configureFlags = "--with-tcl=" + tcl + "/lib " +
|
|
"--with-tk=" + tk + "/lib";
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/wishwn --set TK_LIBRARY "${tk}/lib/${tk.libPrefix}"
|
|
wrapProgram $out/bin/wnb --prefix PATH : "$out/bin"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Lexical database for the English language";
|
|
|
|
longDescription =
|
|
'' WordNet® is a large lexical database of English. Nouns, verbs,
|
|
adjectives and adverbs are grouped into sets of cognitive synonyms
|
|
(synsets), each expressing a distinct concept. Synsets are
|
|
interlinked by means of conceptual-semantic and lexical relations.
|
|
The resulting network of meaningfully related words and concepts can
|
|
be navigated with the browser. WordNet is also freely and publicly
|
|
available for download. WordNet's structure makes it a useful tool
|
|
for computational linguistics and natural language processing.
|
|
'';
|
|
|
|
homepage = https://wordnet.princeton.edu/;
|
|
|
|
maintainers = [ ];
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
|
};
|
|
}
|