blob: d73c0523e0446ce96795b18452679b563495d9e3 (
plain) (
tree)
|
|
{
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
];
}
|