dhall-json-simple: add json-to-dhall and dhall-yaml

There’s more stuff now. Maybe we should have a check that we don’t
miss when they add binaries?
This commit is contained in:
Profpatsch 2020-03-31 00:13:04 +02:00
parent aa9db8eb24
commit dd4e3f6c36
1 changed files with 6 additions and 0 deletions

View File

@ -20,9 +20,15 @@ pkgs.stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out/bin
DHALL_TO_JSON=$out/bin/dhall-to-json
DHALL_TO_YAML=$out/bin/dhall-to-yaml
JSON_TO_DHALL=$out/bin/json-to-dhall
install -D -m555 -T dhall-to-json $DHALL_TO_JSON
install -D -m555 -T dhall-to-yaml $DHALL_TO_YAML
install -D -m555 -T json-to-dhall $JSON_TO_DHALL
mkdir -p $out/etc/bash_completion.d/
$DHALL_TO_JSON --bash-completion-script $DHALL_TO_JSON > $out/etc/bash_completion.d/dhall-to-json-completion.bash
$DHALL_TO_YAML --bash-completion-script $DHALL_TO_YAML > $out/etc/bash_completion.d/dhall-to-yaml-completion.bash
$JSON_TO_DHALL --bash-completion-script $JSON_TO_DHALL > $out/etc/bash_completion.d/json-to-dhall-completion.bash
'';
}