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