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
39 lines
727 B
Nix
39 lines
727 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dasm";
|
|
version = "2.20.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dasm-assembler";
|
|
repo = "dasm";
|
|
rev = version;
|
|
sha256 = "1bna0bj503xyn5inwzzsrsgi9qg8p20by4dfk7azj91ynw56pl41";
|
|
};
|
|
|
|
configurePhase = false;
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
install bin/* $out/bin
|
|
'';
|
|
|
|
preCheck = ''
|
|
patchShebangs ./test/
|
|
'';
|
|
|
|
checkTarget = "test";
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Assembler for 6502 and other 8-bit microprocessors";
|
|
homepage = "https://dasm-assembler.github.io";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.jwatt ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|