summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2016-02-04 01:37:28 -0500
committerAneesh Agrawal <aneeshusa@gmail.com>2016-02-04 01:37:28 -0500
commitb4c449635a09f5e143a9887afbefa7a7223fc906 (patch)
tree2e82456d4ec6333f9a9a7c1eda6a5199b4f3bcf8 /pkgs/development/compilers
parent77f8f35d57618c1ba456d968524f2fb2c3448295 (diff)
downloadnixlib-b4c449635a09f5e143a9887afbefa7a7223fc906.tar
nixlib-b4c449635a09f5e143a9887afbefa7a7223fc906.tar.gz
nixlib-b4c449635a09f5e143a9887afbefa7a7223fc906.tar.bz2
nixlib-b4c449635a09f5e143a9887afbefa7a7223fc906.tar.lz
nixlib-b4c449635a09f5e143a9887afbefa7a7223fc906.tar.xz
nixlib-b4c449635a09f5e143a9887afbefa7a7223fc906.tar.zst
nixlib-b4c449635a09f5e143a9887afbefa7a7223fc906.zip
as31: init at 2.3.1
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/as31/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/compilers/as31/default.nix b/pkgs/development/compilers/as31/default.nix
new file mode 100644
index 000000000000..24cba18254f2
--- /dev/null
+++ b/pkgs/development/compilers/as31/default.nix
@@ -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 ];
+  };
+}