2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
stdenv.mkDerivation {
|
2007-09-03 14:10:57 +02:00
|
|
|
name = "uisp-20050207";
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2007-09-03 14:10:57 +02:00
|
|
|
url = http://mirror.switch.ch/mirror/gentoo/distfiles/uisp-20050207.tar.gz;
|
|
|
|
sha256 = "1bncxp5yxh9r1yrp04vvhfiva8livi1pwic7v8xj99q09zrwahvw";
|
|
|
|
};
|
|
|
|
|
2016-12-05 01:40:04 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
|
2007-09-03 14:10:57 +02:00
|
|
|
meta = {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "Tool for AVR microcontrollers which can interface to many hardware in-system programmers";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2007-09-03 14:10:57 +02:00
|
|
|
homepage = http://savannah.nongnu.org/projects/uisp;
|
2016-12-05 01:40:04 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2007-09-03 14:10:57 +02:00
|
|
|
};
|
|
|
|
}
|