fio: use python3
This commit is contained in:
parent
15a9c8ba60
commit
9533ed6c65
@ -1,5 +1,5 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, makeWrapper
|
{ lib, stdenv, fetchFromGitHub, makeWrapper
|
||||||
, libaio, python, zlib
|
, libaio, python3, zlib
|
||||||
, withGnuplot ? false, gnuplot ? null }:
|
, withGnuplot ? false, gnuplot ? null }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -13,11 +13,13 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256-/Si0McndJ6Xp3ifDr+BStv89LmZyAgof95QkHGT8MGQ=";
|
sha256 = "sha256-/Si0McndJ6Xp3ifDr+BStv89LmZyAgof95QkHGT8MGQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ python zlib ]
|
buildInputs = [ python3 zlib ]
|
||||||
++ lib.optional (!stdenv.isDarwin) libaio;
|
++ lib.optional (!stdenv.isDarwin) libaio;
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user