comma/,
Andreas Schmid f6f259214b add nix version 2.4 compatibility
Signed-off-by: Andreas Schmid <service@aaschmid.de>
2022-01-02 19:09:21 +02:00

55 lines
1.2 KiB
Bash
Executable File

#!/bin/bash
#
# usage example:
# $ , yarn --help
# This finds a derivation providing a bin/yarn, and runs it with `nix run`.
# If there are multiple candidates, the user chooses one using `fzy`.
set -euo pipefail
if [[ $# -lt 1 ]]; then
>&2 echo "usage: , <program> [arguments]"
exit 1
fi
if [[ "$1" == "--install" ]] || [[ "$1" == "-i" ]]; then
install=1
shift
else
install=""
fi
argv0=$1; shift
case "${argv0}" in
@OVERLAY_PACKAGES@)
attr="${argv0}"
;;
*)
attr="$(nix-locate --db "${NIX_INDEX_DB}" --top-level --minimal --at-root --whole-name "/bin/${argv0}")"
if [[ "$(echo "${attr}" | wc -l)" -ne 1 ]]; then
attr="$(echo "${attr}" | fzy)"
fi
;;
esac
if [[ -z $attr ]]; then
>&2 echo "no match"
exit 1
fi
if [[ -n $install ]]; then
nix-env -iA "nixpkgs.${attr%%.*}"
else
nix_version_greater_or_equal() {
local nix_version
nix_version=$(nix --version | cut -f3 -d ' ')
printf '%s\n%s' "$1" "$nix_version" | sort -C -V
}
if nix_version_greater_or_equal "2.4"; then
nix --extra-experimental-features 'nix-command flakes' shell "nixpkgs#${attr}" -c "${argv0}" "$@"
else
nix run "nixpkgs.${attr}" -c "${argv0}" "$@"
fi
fi