easyjson: init at git-2018-03-23

This commit is contained in:
Okina Matara 2018-05-17 18:51:11 -05:00
parent 66aed8fd38
commit 6ed5195ba9
3 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,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;
};
}

View file

@ -0,0 +1,3 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
[
]

View file

@ -13937,6 +13937,8 @@ with pkgs;
dep = callPackage ../development/tools/dep { };
easyjson = callPackage ../development/tools/easyjson { };
go-bindata = callPackage ../development/tools/go-bindata { };
go-bindata-assetfs = callPackage ../development/tools/go-bindata-assetfs { };