2018-10-12 21:09:59 +01:00
|
|
|
{ stdenv, fetchurl, automake, autoconf }:
|
2017-09-05 03:42:26 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
version = "2.0.0";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "avr-libc";
|
|
|
|
inherit version;
|
2017-09-05 03:42:26 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://download.savannah.gnu.org/releases/avr-libc/avr-libc-2.0.0.tar.bz2";
|
2017-09-05 03:42:26 +01:00
|
|
|
sha256 = "15svr2fx8j6prql2il2fc0ppwlv50rpmyckaxx38d3gxxv97zpdj";
|
|
|
|
};
|
|
|
|
|
2018-10-12 21:09:59 +01:00
|
|
|
nativeBuildInputs = [ automake autoconf ];
|
2017-09-05 03:42:26 +01:00
|
|
|
|
|
|
|
# Make sure we don't strip the libraries in lib/gcc/avr.
|
2020-04-07 04:32:19 +01:00
|
|
|
stripDebugList = [ "bin" ];
|
2017-09-05 03:42:26 +01:00
|
|
|
dontPatchELF = true;
|
|
|
|
|
2018-10-15 22:11:20 +01:00
|
|
|
passthru = {
|
|
|
|
incdir = "/avr/include";
|
|
|
|
};
|
|
|
|
|
2017-09-05 03:42:26 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "a C runtime library for AVR microcontrollers";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://savannah.nongnu.org/projects/avr-libc/";
|
2017-09-05 03:42:26 +01:00
|
|
|
license = licenses.bsd3;
|
2018-11-02 20:10:57 +00:00
|
|
|
platforms = [ "avr-none" ];
|
2017-09-05 03:42:26 +01:00
|
|
|
maintainers = with maintainers; [ mguentner ];
|
|
|
|
};
|
|
|
|
}
|