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

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

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