summary refs log tree commit diff
path: root/pkgs/development/tools/easyjson/default.nix
blob: 9277ebe363fb2a9d3637ccdc2e64c1ce3861a29d (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-03-23";
  rev = "8b799c424f57fa123fc63a99d6383bc6e4c02578";

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

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

  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;
  };
}