Skip to content

Commit

Permalink
Remove espup and ldproxy
Browse files Browse the repository at this point in the history
Both are available via Nix now.
  • Loading branch information
DanNixon committed Jun 5, 2024
1 parent 1074719 commit 9111cbe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 18 deletions.
15 changes: 0 additions & 15 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,3 @@ RUN apt-get update && \
libxml2 \
python3.10 \
python3.10-venv

RUN apt-get install --yes \
curl \
unzip && \
curl -L 'https://github.com/esp-rs/espup/releases/latest/download/espup-x86_64-unknown-linux-gnu' -o /usr/bin/espup && \
chmod a+x /usr/bin/espup && \
curl -L 'https://github.com/esp-rs/embuild/releases/download/ldproxy-v0.3.2/ldproxy-x86_64-unknown-linux-gnu.zip' -o ldproxy.zip && \
unzip ldproxy.zip ldproxy && \
rm ldproxy.zip && \
chmod a+x ldproxy && \
mv ldproxy /usr/bin/ldproxy && \
apt-get remove --yes \
curl \
unzip && \
apt-get autoremove --yes
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

Container images containing [esp-rs](https://github.com/esp-rs) related tooling, intended for use with [Distrobox](https://github.com/89luca89/distrobox).

Created as a result of much annoyance trying to get the ESP-IDF to build in Nix and (to a much lesser extent) the fact that some tools were not yet packaged.
Created as a result of much annoyance trying to get the ESP-IDF to build in Nix.
Only the items that could not be managed via Nix are included.

Included is:
- clang
- Python + venv (ESP-IDF's "is this a venv" check fails as it does not seem to like Nix directory prefixes)
- [espup](https://github.com/esp-rs/espup) (not packaged for Nix)
- [ldproxy](https://github.com/esp-rs/embuild/tree/master/ldproxy) (not packaged for Nix)

0 comments on commit 9111cbe

Please sign in to comment.