2018-11-15 13:20:00 +00:00
|
|
|
{ stdenvNoCC, lib, fetchurl }:
|
|
|
|
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "fasm-bin";
|
2018-11-15 13:20:00 +00:00
|
|
|
|
2022-03-08 10:31:59 +00:00
|
|
|
version = "1.73.30";
|
2018-11-15 13:20:00 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://flatassembler.net/fasm-${version}.tgz";
|
2022-03-08 10:31:59 +00:00
|
|
|
sha256 = "sha256-dRlQUaWIHbu+DwQBFh6Tf4o2u0LTRw/Ehp2hT9LC8QE=";
|
2018-11-15 13:20:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D fasm${lib.optionalString stdenvNoCC.isx86_64 ".x64"} $out/bin/fasm
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "x86(-64) macro assembler to binary, MZ, PE, COFF, and ELF";
|
2020-04-12 09:56:50 +00:00
|
|
|
homepage = "https://flatassembler.net/download.php";
|
2018-11-15 13:20:00 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|