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
37 lines
802 B
Nix
37 lines
802 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchsvn,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "acme";
|
|
version = "unstable-2021-11-05";
|
|
|
|
src = fetchsvn {
|
|
url = "svn://svn.code.sf.net/p/acme-crossass/code-0/trunk";
|
|
rev = "323";
|
|
sha256 = "1dzvip90yf1wg0fhfghn96dwrhg289d06b624px9a2wwy3vp5ryg";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/src";
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace "= gcc" "?= gcc"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [ "BINDIR=$(out)/bin" ];
|
|
|
|
meta = {
|
|
description = "Multi-platform cross assembler for 6502/6510/65816 CPUs";
|
|
mainProgram = "acme";
|
|
homepage = "https://sourceforge.net/projects/acme-crossass/";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ OPNA2608 ];
|
|
};
|
|
}
|