1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 11:56:14 +00:00
nixpkgs/pkgs/development/tools/build-managers/bam/default.nix

38 lines
829 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, lua5_3, python }:
2015-07-20 05:36:28 +01: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 05:36:28 +01:00
};
2019-01-21 10:32:11 +00:00
buildInputs = [ lua5_3 python ];
buildPhase = "${stdenv.shell} make_unix.sh";
checkPhase = "${python.interpreter} scripts/test.py";
2015-07-20 05:36:28 +01: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 05:36:28 +01:00
'';
meta = with lib; {
description = "Yet another build manager";
2015-07-20 05:36:28 +01:00
maintainers = with maintainers;
[
raskin
];
2015-07-20 05:36:28 +01:00
platforms = platforms.linux;
2019-01-21 10:32:11 +00:00
license = licenses.zlib;
2015-07-20 05:36:28 +01:00
downloadPage = "http://matricks.github.com/bam/";
};
2015-07-20 05:36:28 +01:00
}