nixpkgs/pkgs/development/compilers/fasm/bin.nix

25 lines
661 B
Nix
Raw Normal View History

2018-11-15 05:20:00 -08:00
{ stdenvNoCC, lib, fetchurl }:
stdenvNoCC.mkDerivation rec {
2019-08-31 04:41:23 -07:00
pname = "fasm-bin";
2018-11-15 05:20:00 -08:00
2020-08-25 13:13:27 -07:00
version = "1.73.25";
2018-11-15 05:20:00 -08:00
src = fetchurl {
url = "https://flatassembler.net/fasm-${version}.tgz";
2020-08-25 13:13:27 -07:00
sha256 = "0k3h61mfwslyb34kf4dnapfwl8jxlmrp4dv666wc057hkj047knn";
2018-11-15 05:20:00 -08: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 02:56:50 -07:00
homepage = "https://flatassembler.net/download.php";
2018-11-15 05:20:00 -08:00
license = licenses.bsd2;
maintainers = with maintainers; [ orivej ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
}