lol
1{ stdenv, fetchurl, autoconf, automake }:
2stdenv.mkDerivation rec {
3 name = "avra-1.3.0";
4
5 src = fetchurl {
6 url = "mirror://sourceforge/avra/${name}.tar.bz2";
7 sha256 = "04lp0k0h540l5pmnaai07637f0p4zi766v6sfm7cryfaca3byb56";
8 };
9
10 buildInputs = [ autoconf automake ];
11
12 preConfigure = ''
13 cd src/
14
15 aclocal
16 autoconf
17
18 touch NEWS README AUTHORS ChangeLog
19 automake -a
20 '';
21
22 meta = with stdenv.lib; {
23 description = "Assember for the Atmel AVR microcontroller family";
24 homepage = http://avra.sourceforge.net/;
25 license = licenses.gpl2Plus;
26 platforms = platforms.all;
27 maintainers = with maintainers; [ the-kenny ];
28 };
29}