nixpkgs/pkgs/development/compilers/nasm/default.nix
Lluís Batlle i Rossell 15f83acc0c Updating nasm
svn path=/nixpkgs/branches/stdenv-updates/; revision=23353
2010-08-22 12:14:28 +00:00

16 lines
369 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "nasm-2.08.01";
src = fetchurl {
url = "mirror://sourceforge/nasm/${name}.tar.bz2";
sha256 = "1ilbvn5hfwhbfxsxdcnnpxy640hqgjjp5wlhfjh7biy0h49rm6q4";
};
meta = {
homepage = http://www.nasm.us/;
description = "An 80x86 and x86-64 assembler designed for portability and modularity";
};
}