about summary refs log tree commit diff
path: root/pkgs/development/tools/easyjson/default.nix
blob: 253f5b374d3c397b7eb9acc1841fd71ba6a98902 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "easyjson-unstable-${version}";
  version = "2018-06-06";
  rev = "3fdea8d05856a0c8df22ed4bc71b3219245e4485";

  goPackagePath = "github.com/mailru/easyjson";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/mailru/easyjson";
    sha256 = "0g3crph77yhv4ipdnwqc32z4cp87ahi4ikad5kyy6q4znnxliz74";
  };

  goDeps = ./deps.nix;

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