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