1 { lib, stdenv, fetchFromGitHub, lua5_3, python3 }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "13br735ig7lygvzyfd15fc2rdygrqm503j6xj5xkrl1r7w2wipq6";
14 nativeBuildInputs = [ lua5_3 python3 ];
16 buildPhase = "${stdenv.shell} make_unix.sh";
18 checkPhase = "${python3.interpreter} scripts/test.py";
23 mkdir -p "$out/share/bam"
24 cp -r docs examples tests "$out/share/bam"
30 description = "Yet another build manager";
32 maintainers = with maintainers;
36 platforms = platforms.linux;
37 license = licenses.zlib;
38 downloadPage = "http://matricks.github.com/bam/";