2021-03-16 09:55:35 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2021-03-16 09:55:35 +00:00
|
|
|
pname = "dxa";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "0.1.5";
|
2021-03-16 09:55:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-17 00:35:05 +00:00
|
|
|
urls = [
|
2023-04-29 16:46:19 +00:00
|
|
|
"https://www.floodgap.com/retrotech/xa/dists/dxa-${finalAttrs.version}.tar.gz"
|
|
|
|
"https://www.floodgap.com/retrotech/xa/dists/unsupported/dxa-${finalAttrs.version}.tar.gz"
|
2021-04-17 00:35:05 +00:00
|
|
|
];
|
2022-08-12 12:06:08 +00:00
|
|
|
hash = "sha256-jkDtd4FlgfmtlaysLtaaL7KseFDkM9Gc1oQZOkWCZ5k=";
|
2021-03-16 09:55:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
postPatch = ''
|
2021-03-19 17:17:44 +00:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "CC = gcc" "CC = ${stdenv.cc.targetPrefix}cc"
|
2021-03-16 09:55:35 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2023-02-22 10:55:15 +00:00
|
|
|
|
|
|
|
install -Dm755 -T dxa $out/bin/dxa
|
2021-03-16 09:55:35 +00:00
|
|
|
installManPage dxa.1
|
2023-02-22 10:55:15 +00:00
|
|
|
|
2021-03-16 09:55:35 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2023-02-22 10:55:15 +00:00
|
|
|
meta = {
|
2021-03-16 09:55:35 +00:00
|
|
|
homepage = "https://www.floodgap.com/retrotech/xa/";
|
|
|
|
description = "Andre Fachat's open-source 6502 disassembler";
|
2023-02-22 10:55:15 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
|
|
platforms = with lib.platforms; unix;
|
2021-03-16 09:55:35 +00:00
|
|
|
};
|
2023-02-22 10:55:15 +00:00
|
|
|
})
|