Files
nixpkgs/pkgs/by-name/ba/bam/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

49 lines
902 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
lua5_3,
python3,
}:
stdenv.mkDerivation rec {
pname = "bam";
version = "0.5.1";
src = fetchFromGitHub {
owner = "matricks";
repo = "bam";
rev = "v${version}";
sha256 = "13br735ig7lygvzyfd15fc2rdygrqm503j6xj5xkrl1r7w2wipq6";
};
nativeBuildInputs = [
lua5_3
python3
];
buildPhase = "${stdenv.shell} make_unix.sh";
checkPhase = "${python3.interpreter} scripts/test.py";
strictDeps = true;
installPhase = ''
mkdir -p "$out/share/bam"
cp -r docs examples tests "$out/share/bam"
mkdir -p "$out/bin"
cp bam "$out/bin"
'';
meta = with lib; {
description = "Yet another build manager";
mainProgram = "bam";
maintainers = with maintainers; [
raskin
];
platforms = platforms.linux;
license = licenses.zlib;
downloadPage = "http://matricks.github.com/bam/";
};
}