forked from mirrors/nixpkgs
easyjson: init at git-2018-03-23
This commit is contained in:
parent
66aed8fd38
commit
6ed5195ba9
26
pkgs/development/tools/easyjson/default.nix
Normal file
26
pkgs/development/tools/easyjson/default.nix
Normal 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;
|
||||
};
|
||||
}
|
3
pkgs/development/tools/easyjson/deps.nix
generated
Normal file
3
pkgs/development/tools/easyjson/deps.nix
generated
Normal file
|
@ -0,0 +1,3 @@
|
|||
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
|
||||
[
|
||||
]
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue