tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
bam: use python3
Frederik Rietdijk
5 years ago
d191ee73
5788d7db
+5
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
build-managers
bam
default.nix
+5
-3
pkgs/development/tools/build-managers/bam/default.nix
reviewed
···
1
1
-
{ lib, stdenv, fetchFromGitHub, lua5_3, python }:
1
1
+
{ lib, stdenv, fetchFromGitHub, lua5_3, python3 }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "bam";
···
11
11
sha256 = "13br735ig7lygvzyfd15fc2rdygrqm503j6xj5xkrl1r7w2wipq6";
12
12
};
13
13
14
14
-
buildInputs = [ lua5_3 python ];
14
14
+
nativeBuildInputs = [ lua5_3 python3 ];
15
15
16
16
buildPhase = "${stdenv.shell} make_unix.sh";
17
17
18
18
-
checkPhase = "${python.interpreter} scripts/test.py";
18
18
+
checkPhase = "${python3.interpreter} scripts/test.py";
19
19
+
20
20
+
strictDeps = true;
19
21
20
22
installPhase = ''
21
23
mkdir -p "$out/share/bam"