Merge pull request #127401 from CertainLach/jrsonnet

This commit is contained in:
Sandro 2021-06-20 18:14:07 +02:00 committed by GitHub
commit 5a4dd196f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 0 deletions

View file

@ -5663,6 +5663,16 @@
githubId = 72546287;
name = "L3af";
};
lach = {
email = "iam@lach.pw";
github = "CertainLach";
githubId = 6235312;
keys = [{
longkeyid = "rsa3072/40B5D6948143175F";
fingerprint = "323C 95B5 DBF7 2D74 8570 C0B7 40B5 D694 8143 175F";
}];
name = "Yaroslav Bolyukin";
};
laikq = {
email = "gwen@quasebarth.de";
github = "laikq";

View file

@ -0,0 +1,26 @@
{ stdenv, lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "jrsonnet";
version = "0.3.8";
src = fetchFromGitHub {
rev = "v${version}";
owner = "CertainLach";
repo = "jrsonnet";
sha256 = "sha256-u6P/j7j6S7iPQQh00YFtp2G9Kt4xdWJGsxbuBjvHHZ4=";
};
postInstall = ''
ln -s $out/bin/jrsonnet $out/bin/jsonnet
'';
cargoSha256 = "sha256-KGQ3n3BBgLCT3ITIM8p9AxNa62ek4GHymqoD0eQSVKQ=";
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";
};
}

View file

@ -15773,6 +15773,8 @@ in
jsonnet-bundler = callPackage ../development/tools/jsonnet-bundler { };
jrsonnet = callPackage ../development/compilers/jrsonnet { };
go-jsonnet = callPackage ../development/compilers/go-jsonnet { };
jsonrpc-glib = callPackage ../development/libraries/jsonrpc-glib { };