depot/third_party/nixpkgs/pkgs/development/compilers/fasmg/default.nix
Default email 24fdeddc0a Project import generated by Copybara.
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
2024-10-23 09:41:50 +03:00

59 lines
1.4 KiB
Nix

{ lib, stdenv
, fetchzip
}:
stdenv.mkDerivation rec {
pname = "fasmg";
version = "kd3c";
src = fetchzip {
url = "https://flatassembler.net/fasmg.${version}.zip";
sha256 = "sha256-duxune/UjXppKf/yWp7y85rpBn4EIC6JcZPNDhScsEA=";
stripRoot = false;
};
buildPhase = let
inherit (stdenv.hostPlatform) system;
path = {
x86_64-linux = {
bin = "fasmg.x64";
asm = "source/linux/x64/fasmg.asm";
};
x86_64-darwin = {
bin = "source/macos/x64/fasmg";
asm = "source/macos/x64/fasmg.asm";
};
x86-linux = {
bin = "fasmg";
asm = "source/linux/fasmg.asm";
};
x86-darwin = {
bin = "source/macos/fasmg";
asm = "source/macos/fasmg.asm";
};
}.${system} or (throw "Unsupported system: ${system}");
in ''
chmod +x ${path.bin}
./${path.bin} ${path.asm} fasmg
'';
outputs = [ "out" "doc" ];
installPhase = ''
install -Dm755 fasmg $out/bin/fasmg
mkdir -p $doc/share/doc/fasmg
cp docs/*.txt $doc/share/doc/fasmg
'';
meta = with lib; {
description = "x86(-64) macro assembler to binary, MZ, PE, COFF, and ELF";
mainProgram = "fasmg";
homepage = "https://flatassembler.net";
license = licenses.bsd3;
maintainers = with maintainers; [ orivej luc65r ];
platforms = with platforms; intersectLists (linux ++ darwin) x86;
};
}