nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildNimPackage, fetchFromGitHub }:
2
3buildNimPackage rec {
4 pname = "jsony";
5 version = "d0e69bddf83874e15b5c2f52f8b1386ac080b443";
6
7 src = fetchFromGitHub {
8 owner = "treeform";
9 repo = pname;
10 rev = version;
11 sha256 = "1p250wb97nzz2g0vvq6mn521fx7sn1jpk1ralbzqh5q8clh4g7wr";
12 };
13
14 doCheck = true;
15
16 meta = with lib;
17 src.meta // {
18 description = "A loose, direct to object json parser with hooks";
19 license = [ licenses.mit ];
20 maintainers = [ maintainers.erdnaxe ];
21 };
22}