2021-12-04 20:10:25 +01:00
|
|
|
{lib, stdenv, fetchurl, buildPackages}:
|
2010-04-30 23:58:47 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-15 16:30:23 +02:00
|
|
|
pname = "yasm";
|
|
|
|
version = "1.3.0";
|
2013-05-12 15:41:07 +02:00
|
|
|
|
2010-04-30 23:58:47 +02:00
|
|
|
src = fetchurl {
|
2021-08-15 16:30:23 +02:00
|
|
|
url = "https://www.tortall.net/projects/yasm/releases/yasm-${version}.tar.gz";
|
2014-10-10 22:33:26 +02:00
|
|
|
sha256 = "0gv0slmm0qpq91za3v2v9glff3il594x5xsrbgab7xcmnh0ndkix";
|
2010-04-30 23:58:47 +02:00
|
|
|
};
|
|
|
|
|
2021-12-04 20:10:25 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
2021-01-22 12:25:31 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.tortall.net/projects/yasm/";
|
2010-04-30 23:58:47 +02:00
|
|
|
description = "Complete rewrite of the NASM assembler";
|
2014-12-21 00:00:35 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
2010-04-30 23:58:47 +02:00
|
|
|
};
|
|
|
|
}
|