nixpkgs/pkgs/development/tools/easyjson/default.nix

27 lines
733 B
Nix
Raw Normal View History

2018-05-18 00:51:11 +01:00
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
{ stdenv, buildGoPackage, fetchgit }:
2018-05-18 00:51:11 +01:00
buildGoPackage rec {
name = "easyjson-unstable-${version}";
2018-06-11 08:53:17 +01:00
version = "2018-06-06";
rev = "3fdea8d05856a0c8df22ed4bc71b3219245e4485";
2018-05-18 00:51:11 +01:00
goPackagePath = "github.com/mailru/easyjson";
src = fetchgit {
inherit rev;
url = "https://github.com/mailru/easyjson";
2018-06-11 08:53:17 +01:00
sha256 = "0g3crph77yhv4ipdnwqc32z4cp87ahi4ikad5kyy6q4znnxliz74";
2018-05-18 00:51:11 +01:00
};
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;
};
}