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

19 lines
527 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2014-06-09 02:43:16 +01:00
name = "nasm-${version}";
2017-08-25 13:42:40 +01:00
version = "2.13.01";
2014-11-20 16:58:10 +00:00
src = fetchurl {
2014-06-09 02:43:16 +01:00
url = "http://www.nasm.us/pub/nasm/releasebuilds/${version}/${name}.tar.bz2";
2017-08-25 13:42:40 +01: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 13:42:40 +01:00
maintainers = with maintainers; [ pSub willibutz ];
};
}