nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation {
4 name = "uisp-20050207";
5
6 src = fetchurl {
7 url = http://mirror.switch.ch/mirror/gentoo/distfiles/uisp-20050207.tar.gz;
8 sha256 = "1bncxp5yxh9r1yrp04vvhfiva8livi1pwic7v8xj99q09zrwahvw";
9 };
10
11 NIX_CFLAGS_COMPILE = "-Wno-error";
12
13 meta = {
14 description = "Tool for AVR microcontrollers which can interface to many hardware in-system programmers";
15 license = stdenv.lib.licenses.gpl2;
16 homepage = https://savannah.nongnu.org/projects/uisp;
17 platforms = stdenv.lib.platforms.linux;
18 };
19}