1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

jsonschema: init at 5.3.1

This commit is contained in:
ibizaman 2024-04-25 10:23:58 -07:00
parent 3a23d44ac8
commit 2d1ac1a64b
No known key found for this signature in database
GPG key ID: D2FA6AED4D6B5E63

View file

@ -0,0 +1,36 @@
{ lib
, buildGoModule
, fetchFromGitHub
, nix-update-script
}:
buildGoModule rec {
pname = "jsonschema";
version = "5.3.1";
src = fetchFromGitHub {
owner = "santhosh-tekuri";
repo = "jsonschema";
rev = "refs/tags/v${version}";
hash = "sha256-ANo9OkdNVCjV5uEqr9lNNbStquNb/3oxuTfMqE2nUzo=";
};
sourceRoot = "source/cmd/jv";
passthru.updateScript = nix-update-script { };
vendorHash = "sha256-FuUkC7iwn/jO3fHjT9nGUXc2X1QuuxPc8DAzVpzhANk=";
ldflags = [
"-s"
"-w"
];
meta = {
description = "JSON schema compilation and validation";
homepage = "https://github.com/santhosh-tekuri/jsonschema";
changelog = "https://github.com/santhosh-tekuri/jsonschema/releases/tag/v${version}";
license = lib.licenses.asl20;
mainProgram = "jv";
maintainers = with lib.maintainers; [ ibizaman ];
};
}