In the package definition the call to the command 'git' is substituted with the full path to the git executable. This change causes the mix formatting tool to complain that the line is too long. This workaround reformats the file after the substitution is made. --- a/Makefile +++ b/Makefile @@ -213,6 +213,7 @@ TEST_ERLS = $(addprefix $(TEST_EBIN)/, $(addsuffix .beam, $(basename $(notdir $(wildcard $(TEST_ERL)/*.erl))))) test_formatted: compile + bin/elixir bin/mix format lib/mix/lib/mix/scm/git.ex bin/elixir bin/mix format --check-formatted test_erlang: compile $(TEST_ERLS) form method='get'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/busybox.scm
AgeCommit message (Expand)Author
2024-10-29gnu: busybox: Fix build on non x86 platform....* gnu/packages/patches/busybox-add-missing-sha-NI-guard.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/busybox.scm (busybox): Use it. Change-Id: I1e6a24dd5b86871a3479ab6ecd247b31c746ec75 Zheng Junjie
2024-10-26gnu: busybox: Update to 1.37.0. [security fixes]...This fixes CVE-2023-42363, CVE-2023-42364, CVE-2023-42365 and CVE-2023-42366. * gnu/packages/busybox.scm (busybox): Update to 1.37.0. Nicolas Graves
2024-10-11gnu: toybox: Update to 0.8.11. [security fixes]...This fixes CVE-2022-32298. * gnu/packages/busybox.scm (toybox): Update to 0.8.11. [arguments]<#:phases>: Adjust phase 'fix-or-skip-broken-tests. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Nicolas Graves
2024-08-31gnu: toybox: Add libxcrypt dependency....* gnu/packages/busybox.scm (toybox)[inputs]: Add libxcrypt. Change-Id: I57f69e62e98ecc8f64d8411780488a26274ade85 宋文武