nixpkgs/pkgs/development/embedded/uisp/default.nix
Artturin f9fdf2d402 treewide: move NIX_CFLAGS_COMPILE to the env attrset
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
2023-02-22 21:23:04 +02:00

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;
};
}