blob: 919fe8e6c97ed9342e983aabdc068562b99935f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
writeShellApplication,
klipper,
python3,
gnumake,
}:
writeShellApplication {
name = "klipper-genconf";
runtimeInputs = [
python3
gnumake
];
text = ''
CURRENT_DIR=$(pwd)
TMP=$(mktemp -d)
make -C ${klipper.src} OUT="$TMP" KCONFIG_CONFIG="$CURRENT_DIR/config" menuconfig
rm -rf "$TMP" config.old
printf "\nYour firmware configuration for klipper:\n\n"
cat config
'';
}
|