nixpkgs/pkgs/development/compilers/nasm/default.nix

27 lines
641 B
Nix
Raw Normal View History

2017-10-01 23:29:14 +00:00
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
2014-06-09 01:43:16 +00:00
name = "nasm-${version}";
version = "2.13.03";
2014-11-20 16:58:10 +00:00
src = fetchurl {
url = "https://www.nasm.us/pub/nasm/releasebuilds/${version}/${name}.tar.bz2";
sha256 = "04bh736zfj3xy5ihh1whshpjxsisv7hqkz954clzdw6kg93qdv33";
};
2017-10-01 23:29:14 +00:00
nativeBuildInputs = [ perl ];
doCheck = true;
checkPhase = ''
make golden && make test
'';
meta = with stdenv.lib; {
2018-06-23 11:34:55 +00:00
homepage = https://www.nasm.us/;
description = "An 80x86 and x86-64 assembler designed for portability and modularity";
platforms = platforms.unix;
2017-08-25 12:42:40 +00:00
maintainers = with maintainers; [ pSub willibutz ];
};
}