summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabián Heredia Montiel <fabianhjr@protonmail.com>2021-10-14 16:32:27 -0500
committerFabián Heredia Montiel <fabianhjr@protonmail.com>2021-10-14 16:36:29 -0500
commitca75c341905e865185951ef33ff982929a5a0370 (patch)
treef19f9186b9b8912651581a3077fbbb6d4d0e01d1
parentcb6276e917fb62c3fdb542cee648596642257cbe (diff)
downloadnixpkgs-ca75c341905e865185951ef33ff982929a5a0370.tar
nixpkgs-ca75c341905e865185951ef33ff982929a5a0370.tar.gz
nixpkgs-ca75c341905e865185951ef33ff982929a5a0370.tar.bz2
nixpkgs-ca75c341905e865185951ef33ff982929a5a0370.tar.lz
nixpkgs-ca75c341905e865185951ef33ff982929a5a0370.tar.xz
nixpkgs-ca75c341905e865185951ef33ff982929a5a0370.tar.zst
nixpkgs-ca75c341905e865185951ef33ff982929a5a0370.zip
dico: python2 → python3
-rw-r--r--pkgs/servers/dico/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/dico/default.nix b/pkgs/servers/dico/default.nix
index 7820dbaff74..13f69fcf4a3 100644
--- a/pkgs/servers/dico/default.nix
+++ b/pkgs/servers/dico/default.nix
@@ -1,5 +1,5 @@
 { fetchurl, lib, stdenv, libtool, gettext, zlib, readline, gsasl
-, guile, python2, pcre, libffi, groff }:
+, guile, python3, pcre, libffi, groff }:
 
 stdenv.mkDerivation rec {
   pname = "dico";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
   hardeningDisable = [ "format" ];
 
   buildInputs =
-    [ libtool gettext zlib readline gsasl guile python2 pcre libffi groff ];
+    [ libtool gettext zlib readline gsasl guile python3 pcre libffi groff ];
 
   doCheck = true;