mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
21 lines
569 B
Nix
21 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;
|
|
};
|
|
}
|