Unverified Commit b9fb2841 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #206601 from figsoda/jrsonnet

jrsonnet: unbreak on darwin, add figsoda as a maintainer
parents d7c03849 0b5c1f33
Loading
Loading
Loading
Loading
+11 −7
Original line number Diff line number Diff line
{ stdenv, lib, fetchFromGitHub, rustPlatform, installShellFiles }:
{ lib, rustPlatform, fetchFromGitHub, installShellFiles }:

rustPlatform.buildRustPackage rec {
  pname = "jrsonnet";
@@ -11,8 +11,15 @@ rustPlatform.buildRustPackage rec {
    sha256 = "sha256-OX+iJJ3vdCsWWr8x31psV9Vne6xWDZnJc83NbJqMK1A=";
  };

  cargoSha256 = "sha256-eFfAU9Q3nYAJK+kKP1Y6ONjOIfkuYTlelrFrEW9IJ8c=";

  nativeBuildInputs = [ installShellFiles ];

  # skip flaky tests
  checkFlags = [
    "--skip=tests::native_ext"
  ];

  postInstall = ''
    ln -s $out/bin/jrsonnet $out/bin/jsonnet

@@ -24,13 +31,10 @@ rustPlatform.buildRustPackage rec {
    done
  '';

  cargoSha256 = "sha256-eFfAU9Q3nYAJK+kKP1Y6ONjOIfkuYTlelrFrEW9IJ8c=";

  meta = {
  meta = with lib; {
    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";
    broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/jrsonnet.x86_64-darwin
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda lach ];
  };
}