2016-03-09 04:42:32 +00:00
|
|
|
{stdenv, fetchFromGitHub, cmake}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-03 06:04:01 +01:00
|
|
|
pname = "wla-dx";
|
|
|
|
version = "9.8";
|
2016-04-06 10:12:12 +01:00
|
|
|
|
2016-03-09 04:42:32 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vhelin";
|
|
|
|
repo = "wla-dx";
|
2019-07-03 06:04:01 +01:00
|
|
|
rev = "v${version}-fix";
|
|
|
|
sha256 = "1dsxhy19nif983lr20vxl099giwzgmzqyh7ass705hkphmwagcv6";
|
2016-03-09 04:42:32 +00:00
|
|
|
};
|
2016-04-06 10:12:12 +01:00
|
|
|
|
2016-03-09 04:42:32 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install binaries/* $out/bin
|
|
|
|
'';
|
2016-04-06 10:12:12 +01:00
|
|
|
|
2016-03-09 04:42:32 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.villehelin.com/wla.html;
|
2016-03-09 04:42:32 +00:00
|
|
|
description = "Yet Another GB-Z80/Z80/6502/65C02/6510/65816/HUC6280/SPC-700 Multi Platform Cross Assembler Package";
|
|
|
|
license = licenses.gpl2;
|
2016-05-27 14:44:29 +01:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
2016-03-09 04:42:32 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|