bam: use python3
This commit is contained in:
parent
5788d7dbbd
commit
d191ee7330
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, lua5_3, python }:
|
{ lib, stdenv, fetchFromGitHub, lua5_3, python3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "bam";
|
pname = "bam";
|
||||||
@ -11,11 +11,13 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "13br735ig7lygvzyfd15fc2rdygrqm503j6xj5xkrl1r7w2wipq6";
|
sha256 = "13br735ig7lygvzyfd15fc2rdygrqm503j6xj5xkrl1r7w2wipq6";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ lua5_3 python ];
|
nativeBuildInputs = [ lua5_3 python3 ];
|
||||||
|
|
||||||
buildPhase = "${stdenv.shell} make_unix.sh";
|
buildPhase = "${stdenv.shell} make_unix.sh";
|
||||||
|
|
||||||
checkPhase = "${python.interpreter} scripts/test.py";
|
checkPhase = "${python3.interpreter} scripts/test.py";
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p "$out/share/bam"
|
mkdir -p "$out/share/bam"
|
||||||
|
Loading…
Reference in New Issue
Block a user