Merge pull request #831 from the-kenny/avra-1.3.0
avra-1.3.0: Assember for the Atmel AVR microcontroller family
This commit is contained in:
commit
1af650355b
|
@ -0,0 +1,28 @@
|
||||||
|
{ 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 = {
|
||||||
|
description = "Assember for the Atmel AVR microcontroller family";
|
||||||
|
homepage = http://avra.sourceforge.net/;
|
||||||
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2110,6 +2110,8 @@ let
|
||||||
|
|
||||||
aspectj = callPackage ../development/compilers/aspectj { };
|
aspectj = callPackage ../development/compilers/aspectj { };
|
||||||
|
|
||||||
|
avra = callPackage ../development/compilers/avra { };
|
||||||
|
|
||||||
bigloo = callPackage ../development/compilers/bigloo { };
|
bigloo = callPackage ../development/compilers/bigloo { };
|
||||||
|
|
||||||
chicken = callPackage ../development/compilers/chicken { };
|
chicken = callPackage ../development/compilers/chicken { };
|
||||||
|
|
Loading…
Reference in New Issue