2021-10-08 15:17:17 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, rustPlatform, installShellFiles }:
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "jrsonnet";
|
2021-07-14 22:03:04 +00:00
|
|
|
version = "0.4.2";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "CertainLach";
|
|
|
|
repo = "jrsonnet";
|
2021-07-14 22:03:04 +00:00
|
|
|
sha256 = "sha256-OX+iJJ3vdCsWWr8x31psV9Vne6xWDZnJc83NbJqMK1A=";
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
|
2021-10-08 15:17:17 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
postInstall = ''
|
|
|
|
ln -s $out/bin/jrsonnet $out/bin/jsonnet
|
2021-10-08 15:17:17 +00:00
|
|
|
|
|
|
|
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
|
2021-06-28 23:13:55 +00:00
|
|
|
'';
|
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
cargoSha256 = "sha256-eFfAU9Q3nYAJK+kKP1Y6ONjOIfkuYTlelrFrEW9IJ8c=";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
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";
|
2022-01-22 01:22:15 +00:00
|
|
|
broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/jrsonnet.x86_64-darwin
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
}
|