summaryrefslogtreecommitdiffstats
path: root/pkgs/servers
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-25 12:55:20 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-25 12:55:20 +0100
commitc15ad415b18539531f46ca772fb0721afd6b0c2f (patch)
tree631919cc84622d72fb8a70ed8f4000ff869da409 /pkgs/servers
parenta904a4d886988a184c3447218704404817a4c9ba (diff)
foundationdb vsmake: stay with python2
CMake builds already use python3. Stay with python2, just to be safe.
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/foundationdb/vsmake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/foundationdb/vsmake.nix b/pkgs/servers/foundationdb/vsmake.nix
index aac9ab07c0f7..e171d7145647 100644
--- a/pkgs/servers/foundationdb/vsmake.nix
+++ b/pkgs/servers/foundationdb/vsmake.nix
@@ -4,7 +4,7 @@
{ gcc6Stdenv, lib, fetchurl, fetchFromGitHub
, which, findutils, m4, gawk
-, python, openjdk, mono, libressl
+, python2, openjdk, mono, libressl
, ...
}:
@@ -51,7 +51,7 @@ let
inherit rev sha256;
};
- nativeBuildInputs = [ python openjdk gawk which m4 findutils mono ];
+ nativeBuildInputs = [ python2 openjdk gawk which m4 findutils mono ];
buildInputs = [ libressl boost ];
inherit patches;