Jump to content

ESP-IDF: Difference between revisions

2 bytes removed ,  25 January 2021
m
Driveby stdenv.lib deprecation cleanup: https://github.com/NixOS/nixpkgs/issues/108938
imported>Mic92
imported>R-burns
m (Driveby stdenv.lib deprecation cleanup: https://github.com/NixOS/nixpkgs/issues/108938)
Line 6: Line 6:


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
{ stdenv, fetchurl, makeWrapper, buildFHSUserEnv }:
{ stdenv, lib, fetchurl, makeWrapper, buildFHSUserEnv }:


let
let
Line 40: Line 40:
   '';
   '';


   meta = with stdenv.lib; {
   meta = with lib; {
     description = "ESP32 toolchain";
     description = "ESP32 toolchain";
     homepage = https://docs.espressif.com/projects/esp-idf/en/stable/get-started/linux-setup.html;
     homepage = https://docs.espressif.com/projects/esp-idf/en/stable/get-started/linux-setup.html;
Anonymous user