nixpkgs/pkgs/development/compilers/yasm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
538 B
Nix
Raw Normal View History

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