mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #127401 from CertainLach/jrsonnet
This commit is contained in:
commit
5a4dd196f0
3 changed files with 38 additions and 0 deletions
|
@ -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";
|
||||
|
|
26
pkgs/development/compilers/jrsonnet/default.nix
Normal file
26
pkgs/development/compilers/jrsonnet/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue