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