depot/third_party/nixpkgs/pkgs/servers/dict/dictd-wordnet.nix

49 lines
1 KiB
Nix

{
lib,
stdenv,
python3,
wordnet,
writeScript,
libfaketime,
}:
stdenv.mkDerivation rec {
version = "542";
pname = "dict-db-wordnet";
buildInputs = [
python3
wordnet
libfaketime
];
convert = ./wordnet_structures.py;
builder = writeScript "builder.sh" ''
. ${stdenv}/setup
mkdir -p $out/share/dictd/
cd $out/share/dictd
for i in ${wordnet}/dict/data.*; do
DATA="$DATA `echo $i | sed -e s,data,index,` $i";
done
source_date=$(date --utc --date=@$SOURCE_DATE_EPOCH "+%F %T")
faketime -f "$source_date" python ${convert} $DATA
echo en_US.UTF-8 > locale
'';
meta = {
description = "dictd-compatible version of WordNet";
longDescription = ''
WordNet® is a large lexical database of English. This package makes
the wordnet data available to dictd and by extension for lookup with
the dict command.
'';
homepage = "https://wordnet.princeton.edu/";
maintainers = [ ];
platforms = lib.platforms.all;
};
}