about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/klipper/klipper-genconf.nix
blob: 42eb519e8c196e80c128d93fd546395f05ae6548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ writeShellApplication
, klipper
, python2
, gnumake
, pkgsCross
}: writeShellApplication {
  name = "klipper-genconf";
  runtimeInputs = [
    python2
    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
  '';
}