nixpkgs/pkgs/development/compilers/nasm/default.nix
Vladimír Čunát e3388aea6e nasm: downgrade again until syslinux gets fixed
Syslinux won't compile with the new version http://hydra.nixos.org/build/17236670
We've already had one update+revert cycle before.
CC @psub.
2014-11-20 11:33:25 +01:00

19 lines
519 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "nasm-${version}";
version = "2.11.05";
src = fetchurl {
url = "http://www.nasm.us/pub/nasm/releasebuilds/${version}/${name}.tar.bz2";
sha256 = "1sgspnascc0asmwlv3jm1mq4vzx653sa7vlg48z20pfybk7pnhaa";
};
meta = with stdenv.lib; {
homepage = http://www.nasm.us/;
description = "An 80x86 and x86-64 assembler designed for portability and modularity";
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
};
}