summary refs log tree commit diff
path: root/pkgs/development/compilers/nasm/default.nix
blob: caf1133072c1b8253939fe4a315069651454fab1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{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";
  };
}