mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-23 03:29:42 +01:00
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:
parent
aa9db8eb24
commit
dd4e3f6c36
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue