1{ lib, stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 pname = "uisp";
5 version = "20050207";
6
7 src = fetchurl {
8 url = "https://savannah.nongnu.org/download/uisp/uisp-${version}.tar.gz";
9 sha256 = "1bncxp5yxh9r1yrp04vvhfiva8livi1pwic7v8xj99q09zrwahvw";
10 };
11
12 NIX_CFLAGS_COMPILE = "-Wno-error";
13
14 meta = {
15 description = "Tool for AVR microcontrollers which can interface to many hardware in-system programmers";
16 license = lib.licenses.gpl2;
17 homepage = "https://savannah.nongnu.org/projects/uisp";
18 platforms = lib.platforms.linux;
19 };
20}