depot/third_party/nixpkgs/pkgs/development/embedded/uisp/default.nix
Default email 4d5a95770c Project import generated by Copybara.
GitOrigin-RevId: 3c5319ad3aa51551182ac82ea17ab1c6b0f0df89
2023-03-04 15:14:45 +03:00

20 lines
569 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "uisp";
version = "20050207";
src = fetchurl {
url = "https://savannah.nongnu.org/download/uisp/uisp-${version}.tar.gz";
sha256 = "1bncxp5yxh9r1yrp04vvhfiva8livi1pwic7v8xj99q09zrwahvw";
};
env.NIX_CFLAGS_COMPILE = "-Wno-error";
meta = {
description = "Tool for AVR microcontrollers which can interface to many hardware in-system programmers";
license = lib.licenses.gpl2;
homepage = "https://savannah.nongnu.org/projects/uisp";
platforms = lib.platforms.linux;
};
}