at 18.03-beta 17 lines 449 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 name = "yasm-1.3.0"; 5 6 src = fetchurl { 7 url = "http://www.tortall.net/projects/yasm/releases/${name}.tar.gz"; 8 sha256 = "0gv0slmm0qpq91za3v2v9glff3il594x5xsrbgab7xcmnh0ndkix"; 9 }; 10 11 meta = with stdenv.lib; { 12 homepage = http://www.tortall.net/projects/yasm/; 13 description = "Complete rewrite of the NASM assembler"; 14 license = licenses.bsd2; 15 platforms = platforms.unix; 16 }; 17}