{
  sysLib,
  mpc-cli,
}:
sysLib.writeShellScript {
  name = "mpc";
  src = ./mpc.sh;
  generateCompletions = false;
  # We source the wrappers from the environment, to ensure that they have the same
  # configurations (e.g. MPD_MUSIC_DIR in `mpc-lyrics`)
  keepPath = true;
  dependencies = [
    mpc-cli
  ];
}