From 568edc1d4f14b97903f4d00246a852469527250c Mon Sep 17 00:00:00 2001 From: Tom Wieczorek Date: Fri, 8 Oct 2021 11:26:48 +0200 Subject: [PATCH] jrsonnet: install shell completions Added the completions for bash, zsh and fish to postInstall, both for jrsonnet and the jsonnet symlink. --- pkgs/development/compilers/jrsonnet/default.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/jrsonnet/default.nix b/pkgs/development/compilers/jrsonnet/default.nix index 512e0aa0247b..5f99fb10cee2 100644 --- a/pkgs/development/compilers/jrsonnet/default.nix +++ b/pkgs/development/compilers/jrsonnet/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchFromGitHub, rustPlatform }: +{ stdenv, lib, fetchFromGitHub, rustPlatform, installShellFiles }: rustPlatform.buildRustPackage rec { pname = "jrsonnet"; @@ -11,8 +11,17 @@ rustPlatform.buildRustPackage rec { sha256 = "sha256-OX+iJJ3vdCsWWr8x31psV9Vne6xWDZnJc83NbJqMK1A="; }; + nativeBuildInputs = [ installShellFiles ]; + postInstall = '' ln -s $out/bin/jrsonnet $out/bin/jsonnet + + for shell in bash zsh fish; do + installShellCompletion --cmd jrsonnet \ + --$shell <($out/bin/jrsonnet --generate $shell /dev/null) + installShellCompletion --cmd jsonnet \ + --$shell <($out/bin/jrsonnet --generate $shell /dev/null | sed s/jrsonnet/jsonnet/g) + done ''; cargoSha256 = "sha256-eFfAU9Q3nYAJK+kKP1Y6ONjOIfkuYTlelrFrEW9IJ8c=";