nixpkgs/pkgs/development/compilers/nasm/default.nix

19 lines
527 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2014-06-08 18:43:16 -07:00
name = "nasm-${version}";
2017-08-25 05:42:40 -07:00
version = "2.13.01";
2014-11-20 08:58:10 -08:00
src = fetchurl {
2014-06-08 18:43:16 -07:00
url = "http://www.nasm.us/pub/nasm/releasebuilds/${version}/${name}.tar.bz2";
2017-08-25 05:42:40 -07:00
sha256 = "1ylqs4sqh0paia970v6hpdgq5icxns9zlg21qql232bz1apppy88";
};
meta = with stdenv.lib; {
homepage = http://www.nasm.us/;
description = "An 80x86 and x86-64 assembler designed for portability and modularity";
platforms = platforms.unix;
2017-08-25 05:42:40 -07:00
maintainers = with maintainers; [ pSub willibutz ];
};
}