1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/compilers/fasm/bin.nix

25 lines
659 B
Nix
Raw Normal View History

2018-11-15 13:20:00 +00:00
{ stdenvNoCC, lib, fetchurl }:
stdenvNoCC.mkDerivation rec {
2019-08-31 12:41:23 +01:00
pname = "fasm-bin";
2018-11-15 13:20:00 +00:00
2019-11-25 18:48:28 +00:00
version = "1.73.18";
2018-11-15 13:20:00 +00:00
src = fetchurl {
url = "https://flatassembler.net/fasm-${version}.tgz";
2019-11-25 18:48:28 +00:00
sha256 = "0m88vi8ac9mlak430nyrg3nxsj0fzy3yli8kk0mqsw8rqw2pfvqb";
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";
homepage = https://flatassembler.net/download.php;
license = licenses.bsd2;
maintainers = with maintainers; [ orivej ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
}