mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
887295fd2d
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
29 lines
621 B
Nix
29 lines
621 B
Nix
{ 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;
|
|
};
|
|
}
|