summaryrefslogtreecommitdiffstats
path: root/pkgs/servers
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-25 12:14:44 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-25 12:14:44 +0100
commit317384aa90da8397e554318e0b8b60cff832f8c5 (patch)
tree825321b19cc24f4f848b79e1726afe0ff11dbb6a /pkgs/servers
parent842f0b4f658ecd08e0e1be2b7db1f06750d8b041 (diff)
wiktionary: stay with python2
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/dict/wiktionary/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/dict/wiktionary/default.nix b/pkgs/servers/dict/wiktionary/default.nix
index cd0c9c6c24bc..3a01120f3a68 100644
--- a/pkgs/servers/dict/wiktionary/default.nix
+++ b/pkgs/servers/dict/wiktionary/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, python, dict, glibcLocales }:
+{ lib, stdenv, fetchurl, python2, dict, glibcLocales }:
stdenv.mkDerivation rec {
version = "20210201";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
convert = ./wiktionary2dict.py;
- buildInputs = [ python dict glibcLocales ];
+ buildInputs = [ python2 dict glibcLocales ];
builder = ./builder.sh;
passthru.updateScript = ./update.sh;