Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{lib, stdenv, fetchurl, buildPackages}: 2 3stdenv.mkDerivation rec { 4 pname = "yasm"; 5 version = "1.3.0"; 6 7 src = fetchurl { 8 url = "https://www.tortall.net/projects/yasm/releases/yasm-${version}.tar.gz"; 9 sha256 = "0gv0slmm0qpq91za3v2v9glff3il594x5xsrbgab7xcmnh0ndkix"; 10 }; 11 12 depsBuildBuild = [ buildPackages.stdenv.cc ]; 13 14 meta = with lib; { 15 homepage = "http://www.tortall.net/projects/yasm/"; 16 description = "Complete rewrite of the NASM assembler"; 17 license = licenses.bsd2; 18 platforms = platforms.unix; 19 }; 20}