nixpkgs/pkgs/development/tools/build-managers/bam/default.nix

40 lines
860 B
Nix
Raw Normal View History

2021-03-25 09:29:14 +00:00
{ lib, stdenv, fetchFromGitHub, lua5_3, python3 }:
2015-07-20 04:36:28 +00:00
stdenv.mkDerivation rec {
pname = "bam";
2019-01-21 10:32:11 +00:00
version = "0.5.1";
2019-01-21 10:32:11 +00:00
src = fetchFromGitHub {
owner = "matricks";
repo = "bam";
rev = "v${version}";
sha256 = "13br735ig7lygvzyfd15fc2rdygrqm503j6xj5xkrl1r7w2wipq6";
2015-07-20 04:36:28 +00:00
};
2021-03-25 09:29:14 +00:00
nativeBuildInputs = [ lua5_3 python3 ];
buildPhase = "${stdenv.shell} make_unix.sh";
2021-03-25 09:29:14 +00:00
checkPhase = "${python3.interpreter} scripts/test.py";
strictDeps = true;
2015-07-20 04:36:28 +00:00
installPhase = ''
mkdir -p "$out/share/bam"
cp -r docs examples tests "$out/share/bam"
mkdir -p "$out/bin"
cp bam "$out/bin"
2015-07-20 04:36:28 +00:00
'';
meta = with lib; {
description = "Yet another build manager";
2015-07-20 04:36:28 +00:00
maintainers = with maintainers;
[
raskin
];
2015-07-20 04:36:28 +00:00
platforms = platforms.linux;
2019-01-21 10:32:11 +00:00
license = licenses.zlib;
2015-07-20 04:36:28 +00:00
downloadPage = "http://matricks.github.com/bam/";
};
2015-07-20 04:36:28 +00:00
}