aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/easyjson/default.nix
blob: ef99bbd01c31e8230a9387224dd885741b3246fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage {
  pname = "easyjson";
  version = "unstable-2019-06-26";
  goPackagePath = "github.com/mailru/easyjson";

  src = fetchFromGitHub {
    owner = "mailru";
    repo = "easyjson";
    rev = "b2ccc519800e761ac8000b95e5d57c80a897ff9e";
    sha256 = "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk";
  };

  meta = with stdenv.lib; {
    homepage = "https://github.com/mailru/easyjson";
    description = "Fast JSON serializer for golang";
    license = licenses.mit;
    maintainers = with maintainers; [ chiiruno ];
  };
}