summary refs log tree commit diff
path: root/pkgs/development/nim-packages/jsony/default.nix
blob: 525da7928171e619b6612f31068436d2d434eda6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildNimPackage, fetchFromGitHub }:

buildNimPackage rec {
  pname = "jsony";
  version = "1.1.5";

  src = fetchFromGitHub {
    owner = "treeform";
    repo = pname;
    rev = version;
    sha256 = "1720iqsxjhqmhw1zhhs7d2ncdz25r8fqadls1p1iry1wfikjlnba";
  };


  meta = with lib;
    src.meta // {
      description = "A loose, direct to object json parser with hooks";
      license = [ licenses.mit ];
      maintainers = [ maintainers.erdnaxe ];
    };
}