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