27 lines
762 B
Nix
27 lines
762 B
Nix
# 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;
|
|
};
|
|
}
|