From 717a92aebe7d48e352536a8ecc2c785e7bc10015 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Sun, 10 Nov 2024 22:33:27 -0500 Subject: [PATCH] manifest.scm: Move guix package deps from .envrc to a manifest file --- .envrc | 2 +- manifest.scm | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 manifest.scm diff --git a/.envrc b/.envrc index cedd1f27da..d155caf740 100644 --- a/.envrc +++ b/.envrc @@ -9,7 +9,7 @@ use_guix-shell() { fi } -use guix-shell gcc-cross-avr-toolchain avrdude dfu-util dfu-programmer make python-wrapper qmk git coreutils sed grep bash gawk diffutils +use guix-shell -m manifest.scm # TODO: currently the following needs to be set to allow the linker to find avr-libc # See: https://issues.guix.gnu.org/69394 diff --git a/manifest.scm b/manifest.scm new file mode 100644 index 0000000000..30d19349fd --- /dev/null +++ b/manifest.scm @@ -0,0 +1,15 @@ +(specifications->manifest + '("avrdude" + "bash" + "coreutils" + "dfu-programmer" + "dfu-util" + "diffutils" + "gawk" + "gcc-cross-avr-toolchain" + "git" + "grep" + "make" + "python-wrapper" + "qmk" + "sed"))