about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/avra/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/compilers/avra/default.nix')
-rw-r--r--nixpkgs/pkgs/development/compilers/avra/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/compilers/avra/default.nix b/nixpkgs/pkgs/development/compilers/avra/default.nix
new file mode 100644
index 000000000000..88a34bd6fd6e
--- /dev/null
+++ b/nixpkgs/pkgs/development/compilers/avra/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, autoconf, automake }:
+stdenv.mkDerivation rec {
+  name = "avra-1.3.0";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/avra/${name}.tar.bz2";
+    sha256 = "04lp0k0h540l5pmnaai07637f0p4zi766v6sfm7cryfaca3byb56";
+  };
+
+  buildInputs = [ autoconf automake ];
+
+  preConfigure = ''
+    cd src/
+
+    aclocal
+    autoconf
+
+    touch NEWS README AUTHORS ChangeLog
+    automake -a
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Assembler for the Atmel AVR microcontroller family";
+    homepage = http://avra.sourceforge.net/;
+    license = licenses.gpl2Plus;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ the-kenny ];
+  };
+}