as31: init at 2.3.1

This commit is contained in:
Aneesh Agrawal 2016-02-04 01:37:28 -05:00
parent 77f8f35d57
commit b4c449635a
3 changed files with 26 additions and 0 deletions

View file

@ -26,6 +26,7 @@
anderspapitto = "Anders Papitto <anderspapitto@gmail.com>";
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
andrewrk = "Andrew Kelley <superjoe30@gmail.com>";
aneeshusa = "Aneesh Agrawal <aneeshusa@gmail.com>";
antono = "Antono Vasiljev <self@antono.info>";
ardumont = "Antoine R. Dumont <eniotna.t@gmail.com>";
aristid = "Aristid Breitkreuz <aristidb@gmail.com>";

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl }:
let
version = "2.3.1";
in stdenv.mkDerivation {
name = "as31-${version}";
src = fetchurl {
name = "as31-${version}.tar.gz"; # Nix doesn't like the colons in the URL
url = "http://wiki.erazor-zone.de/_media/wiki:projects:linux:as31:as31-${version}.tar.gz";
sha256 = "0mbk6z7z03xb0r0ccyzlgkjdjmdzknck4yxxmgr9k7v8f5c348fd";
};
preConfigure = ''
chmod +x ./configure
'';
meta = with stdenv.lib; {
homepage = "http://wiki.erazor-zone.de/wiki:projects:linux:as31";
description = "An 8031/8051 assembler by Ken Stauffer and Theo Deraadt which produces a variety of object code output formats";
maintainers = with maintainers; [ aneeshusa ];
};
}

View file

@ -565,6 +565,8 @@ let
artyFX = callPackage ../applications/audio/artyFX {};
as31 = callPackage ../development/compilers/as31 {};
ascii = callPackage ../tools/text/ascii { };
asciinema = goPackages.asciinema.bin // { outputs = [ "bin" ]; };