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

19 lines
517 B
Nix
Raw Normal View History

2012-03-19 13:16:35 +00:00
{ stdenv, fetchurl }:
2004-09-26 18:12:51 +00:00
2009-05-14 14:42:20 +00:00
stdenv.mkDerivation rec {
2014-06-08 20:43:16 -05:00
name = "nasm-${version}";
2017-03-19 16:33:52 -04:00
version = "2.12.02";
2014-11-20 17:58:10 +01:00
2004-09-26 18:12:51 +00:00
src = fetchurl {
2014-06-08 20:43:16 -05:00
url = "http://www.nasm.us/pub/nasm/releasebuilds/${version}/${name}.tar.bz2";
2017-03-19 16:33:52 -04:00
sha256 = "097318bjxvmffbjfd1k89parc04xf5jfxg2rr93581lccwf8kc00";
2009-05-14 14:42:20 +00:00
};
meta = with stdenv.lib; {
2009-05-14 14:42:20 +00:00
homepage = http://www.nasm.us/;
description = "An 80x86 and x86-64 assembler designed for portability and modularity";
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
2004-09-26 18:12:51 +00:00
};
}