1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/compilers/nasm/default.nix
Eelco Dolstra 120a82d7b9 * NASM: updated to the latest version.
* eduke: needs NASM on i686-linux.

svn path=/nixpkgs/trunk/; revision=15604
2009-05-14 14:42:20 +00:00

18 lines
399 B
Nix

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