2010-04-30 21:58:47 +00:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-10-10 20:33:26 +00:00
|
|
|
name = "yasm-1.3.0";
|
2013-05-12 13:41:07 +00:00
|
|
|
|
2010-04-30 21:58:47 +00:00
|
|
|
src = fetchurl {
|
2011-06-16 05:55:47 +00:00
|
|
|
url = "http://www.tortall.net/projects/yasm/releases/${name}.tar.gz";
|
2014-10-10 20:33:26 +00:00
|
|
|
sha256 = "0gv0slmm0qpq91za3v2v9glff3il594x5xsrbgab7xcmnh0ndkix";
|
2010-04-30 21:58:47 +00:00
|
|
|
};
|
|
|
|
|
2014-12-20 23:00:35 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-04-30 21:58:47 +00:00
|
|
|
homepage = http://www.tortall.net/projects/yasm/;
|
|
|
|
description = "Complete rewrite of the NASM assembler";
|
2014-12-20 23:00:35 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
2010-04-30 21:58:47 +00:00
|
|
|
};
|
|
|
|
}
|