nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

bam: use python3

+5 -3
+5 -3
pkgs/development/tools/build-managers/bam/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, lua5_3, python }: 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 - buildInputs = [ lua5_3 python ]; 14 + nativeBuildInputs = [ lua5_3 python3 ]; 15 15 16 16 buildPhase = "${stdenv.shell} make_unix.sh"; 17 17 18 - checkPhase = "${python.interpreter} scripts/test.py"; 18 + checkPhase = "${python3.interpreter} scripts/test.py"; 19 + 20 + strictDeps = true; 19 21 20 22 installPhase = '' 21 23 mkdir -p "$out/share/bam"