depot/third_party/nixpkgs/pkgs/by-name/na/nasm/package.nix

46 lines
921 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, perl
, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "nasm";
version = "2.16.03";
src = fetchurl {
url = "https://www.nasm.us/pub/nasm/releasebuilds/${version}/${pname}-${version}.tar.xz";
hash = "sha256-FBKhx2C70F2wJrbA0WV6/9ZjHNCmPN229zzG1KphYUg=";
};
nativeBuildInputs = [ perl ];
enableParallelBuilding = true;
doCheck = true;
checkPhase = ''
runHook preCheck
make golden
make test
runHook postCheck
'';
passthru.updateScript = gitUpdater {
url = "https://github.com/netwide-assembler/nasm.git";
rev-prefix = "nasm-";
ignoredVersions = "rc.*";
};
meta = with lib; {
homepage = "https://www.nasm.us/";
description = "80x86 and x86-64 assembler designed for portability and modularity";
platforms = platforms.unix;
maintainers = with maintainers; [ pSub willibutz ];
license = licenses.bsd2;
};
}