mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
21 lines
452 B
Nix
21 lines
452 B
Nix
{ writeShellApplication
|
|
, klipper
|
|
, python3
|
|
, gnumake
|
|
, pkgsCross
|
|
}: writeShellApplication {
|
|
name = "klipper-genconf";
|
|
runtimeInputs = [
|
|
python3
|
|
pkgsCross.avr.stdenv.cc
|
|
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
|
|
'';
|
|
}
|