diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-16 21:13:24 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-16 21:13:24 +0100 |
commit | b317fc17f00ea74fe2267950b3119dddddd78b09 (patch) | |
tree | bdcf6882c5ba53129001597a9d057a0c4f9d4ca2 /pkgs/by-name/mp/mpc/mpc.sh | |
parent | build(treewide): Update (diff) | |
download | nixos-config-b317fc17f00ea74fe2267950b3119dddddd78b09.zip |
refactor(pkgs/mpc): Rename to `mpp`
Nixpkgs has renamed their `mpc-cli` package to just `mpc`, turning this `mpc` package into an override for the official nixpkgs one. I think being explicit about the fact, that `mpc` is wrapped is the best solution here.
Diffstat (limited to 'pkgs/by-name/mp/mpc/mpc.sh')
-rwxr-xr-x | pkgs/by-name/mp/mpc/mpc.sh | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/by-name/mp/mpc/mpc.sh b/pkgs/by-name/mp/mpc/mpc.sh deleted file mode 100755 index 0d636ac5..00000000 --- a/pkgs/by-name/mp/mpc/mpc.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env dash - -# shellcheck source=/dev/null -SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH - -case "$1" in -"searchadd") - shift 1 - mpc-searchadd "$@" - ;; -"lyrics") - shift 1 - mpc-lyrics "$@" - ;; -"beetrm") - shift 1 - mpc-beetrm "$@" - ;; -*) - mpc "$@" - ;; -esac - -# vim: ft=sh |