summaryrefslogtreecommitdiffstats
path: root/pkgs/servers
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-25 12:16:29 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-25 12:16:29 +0100
commit2b92f2b2595e9e293184aa0578e2ef9bae2a9570 (patch)
treea8e74232e3efc858e526a4505cc39dea1aefaa97 /pkgs/servers
parent317384aa90da8397e554318e0b8b60cff832f8c5 (diff)
dictdDBs.wordnet: stay with python2
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/dict/dictd-wordnet.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/dict/dictd-wordnet.nix b/pkgs/servers/dict/dictd-wordnet.nix
index 3f76d60233cc..8378102dac53 100644
--- a/pkgs/servers/dict/dictd-wordnet.nix
+++ b/pkgs/servers/dict/dictd-wordnet.nix
@@ -1,10 +1,10 @@
-{lib, stdenv, python, wordnet, writeScript}:
+{lib, stdenv, python2, wordnet, writeScript}:
stdenv.mkDerivation rec {
version = "542";
pname = "dict-db-wordnet";
- buildInputs = [python wordnet];
+ buildInputs = [python2 wordnet];
convert = ./wordnet_structures.py;
builder = writeScript "builder.sh" ''