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