nixpkgs/pkgs/development/compilers/fasm/bin.nix
R. RyanTM 1599992618 fasm-bin: 1.73.05 -> 1.73.06
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fasm-bin/versions
2019-01-17 12:37:35 -08:00

25 lines
669 B
Nix

{ stdenvNoCC, lib, fetchurl }:
stdenvNoCC.mkDerivation rec {
name = "fasm-bin-${version}";
version = "1.73.06";
src = fetchurl {
url = "https://flatassembler.net/fasm-${version}.tgz";
sha256 = "02wqkqxpn3p0iwcagsm92qd9cdfcnbx8a09qg03b3pjppp30hmp6";
};
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" ];
};
}