Skip to content

Commit

Permalink
sapling: pin to Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
shadaj committed Sep 10, 2024
1 parent 144ac34 commit 73a1ad7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/applications/version-management/sapling/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ lib
, stdenv
, python3Packages
, python311Packages
, fetchFromGitHub
, fetchurl
, cargo
Expand Down Expand Up @@ -83,7 +83,7 @@ let
substituteInPlace build-tar.py \
--replace-fail 'run(yarn + ["--cwd", src_join(), "install", "--prefer-offline"])' 'pass'
${python3Packages.python}/bin/python3 build-tar.py \
${python311Packages.python}/bin/python3 build-tar.py \
--output isl-dist.tar.xz \
--yarn 'yarn --offline --frozen-lockfile --ignore-engines --ignore-scripts --no-progress'
Expand All @@ -101,7 +101,7 @@ let
};
in
# Builds the main `sl` binary and its Python extensions
python3Packages.buildPythonApplication {
python311Packages.buildPythonApplication {
pname = "sapling";
inherit src version;

Expand Down

0 comments on commit 73a1ad7

Please sign in to comment.