nixpkgs/pkgs/development/compilers/nasm/default.nix
Eelco Dolstra b6befed50e * Updated SDL, NASM and Generator to the latest versions.
* Moved Generator to the misc/emulators directory.

svn path=/nixpkgs/trunk/; revision=4330
2005-12-03 01:33:18 +00:00

11 lines
249 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "nasm-0.98.39";
builder = ./builder.sh;
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/nasm/nasm-0.98.39.tar.bz2;
md5 = "2032ad44c7359f7a9a166a40a633e772";
};
}