summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-02-26 13:11:30 +0000
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-02-26 13:11:30 +0000
commit2af27d6143a0dbaa076519fbc866fb7e5a5dcc91 (patch)
tree22b0141afc98577adcf31cc7452b3d494314bea3
parent94d78e46ede53556fe359a0a9731990b985fbe7a (diff)
pypy: Use hash everywhere
Fixes the build after cpython switched to hash.
-rw-r--r--pkgs/development/interpreters/python/pypy/default.nix4
-rw-r--r--pkgs/development/interpreters/python/pypy/prebuilt.nix4
-rw-r--r--pkgs/development/interpreters/python/pypy/prebuilt_2_7.nix4
3 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/interpreters/python/pypy/default.nix b/pkgs/development/interpreters/python/pypy/default.nix
index b7597a9925b6..eb16bddf16fc 100644
--- a/pkgs/development/interpreters/python/pypy/default.nix
+++ b/pkgs/development/interpreters/python/pypy/default.nix
@@ -12,7 +12,7 @@
, pkgsTargetTarget
, sourceVersion
, pythonVersion
-, sha256
+, hash
, passthruFun
, pythonAttr ? "pypy${lib.substring 0 1 pythonVersion}${lib.substring 2 3 pythonVersion}"
}:
@@ -46,7 +46,7 @@ in with passthru; stdenv.mkDerivation rec {
src = fetchurl {
url = "https://downloads.python.org/pypy/pypy${pythonVersion}-v${version}-src.tar.bz2";
- inherit sha256;
+ inherit hash;
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/development/interpreters/python/pypy/prebuilt.nix b/pkgs/development/interpreters/python/pypy/prebuilt.nix
index 9b3baf84848b..69508742148b 100644
--- a/pkgs/development/interpreters/python/pypy/prebuilt.nix
+++ b/pkgs/development/interpreters/python/pypy/prebuilt.nix
@@ -19,7 +19,7 @@
, packageOverrides ? (self: super: {})
, sourceVersion
, pythonVersion
-, sha256
+, hash
, passthruFun
}:
@@ -60,7 +60,7 @@ in with passthru; stdenv.mkDerivation {
src = fetchurl {
url = downloadUrls.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
- inherit sha256;
+ inherit hash;
};
buildInputs = [
diff --git a/pkgs/development/interpreters/python/pypy/prebuilt_2_7.nix b/pkgs/development/interpreters/python/pypy/prebuilt_2_7.nix
index ddf3963060d1..c4b676271673 100644
--- a/pkgs/development/interpreters/python/pypy/prebuilt_2_7.nix
+++ b/pkgs/development/interpreters/python/pypy/prebuilt_2_7.nix
@@ -19,7 +19,7 @@
, packageOverrides ? (self: super: {})
, sourceVersion
, pythonVersion
-, sha256
+, hash
, passthruFun
}:
@@ -60,7 +60,7 @@ in with passthru; stdenv.mkDerivation {
src = fetchurl {
url = downloadUrls.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
- inherit sha256;
+ inherit hash;
};
buildInputs = [