summary refs log tree commit diff
path: root/pkgs/development/compilers/nasm/default.nix
blob: 61015a66d1653c7f9972264a82bb45a5ff383989 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "nasm-2.10";
  
  src = fetchurl {
    url = "http://www.nasm.us/pub/nasm/releasebuilds/2.10/${name}.tar.bz2";
    sha256 = "1wcxm0il06b17wjarw8pbf9bagjhfcf7yayahmyip03qkfka2yk8";
  };

  meta = {
    homepage = http://www.nasm.us/;
    description = "An 80x86 and x86-64 assembler designed for portability and modularity";
  };
}