diff options
| author | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2022-12-02 02:22:40 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2022-12-02 08:26:40 +0000 |
| commit | 88f3d54476175e3d089971343cf274c5af9938a1 (patch) | |
| tree | a41850bc0bfe3604bdfec8711e6290e884a8654d | |
| parent | z3: use python3 (diff) | |
| download | nixpkgs-88f3d54476175e3d089971343cf274c5af9938a1.tar.gz | |
acl2: remove python2 usage
(cherry picked from commit 7163503e90b12a35bbe47c7e657a140cd14c5b0c)
| -rw-r--r-- | pkgs/development/interpreters/acl2/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/acl2/default.nix b/pkgs/development/interpreters/acl2/default.nix index e42f26f0bdaf..9953eaa3144c 100644 --- a/pkgs/development/interpreters/acl2/default.nix +++ b/pkgs/development/interpreters/acl2/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, callPackage, fetchFromGitHub, runCommandLocal, makeWrapper, substituteAll , sbcl, bash, which, perl, hostname -, openssl, glucose, minisat, abc-verifier, z3, python2 +, openssl, glucose, minisat, abc-verifier, z3, python3 , certifyBooks ? true } @ args: @@ -50,7 +50,7 @@ in stdenv.mkDerivation rec { which perl hostname # Some of the books require one or more of these external tools: glucose minisat abc-verifier libipasir - z3 (python2.withPackages (ps: [ ps.z3 ])) + z3 (python3.withPackages (ps: [ ps.z3 ])) ]; # NOTE: Parallel building can be memory-intensive depending on the number of |
