25 lines
661 B
Nix
25 lines
661 B
Nix
{ stdenvNoCC, lib, fetchurl }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "fasm-bin";
|
|
|
|
version = "1.73.24";
|
|
|
|
src = fetchurl {
|
|
url = "https://flatassembler.net/fasm-${version}.tgz";
|
|
sha256 = "142vxhs8mh8isvlzq7ir0asmqda410phzxmk9gk9b43dldskkj7k";
|
|
};
|
|
|
|
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";
|
|
homepage = "https://flatassembler.net/download.php";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
};
|
|
}
|