568edc1d4f
Added the completions for bash, zsh and fish to postInstall, both for jrsonnet and the jsonnet symlink.
36 lines
1.0 KiB
Nix
36 lines
1.0 KiB
Nix
{ stdenv, lib, fetchFromGitHub, rustPlatform, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "jrsonnet";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "CertainLach";
|
|
repo = "jrsonnet";
|
|
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=";
|
|
|
|
meta = {
|
|
description = "Purely-functional configuration language that helps you define JSON data";
|
|
maintainers = with lib.maintainers; [ lach ];
|
|
license = lib.licenses.mit;
|
|
homepage = "https://github.com/CertainLach/jrsonnet";
|
|
};
|
|
}
|