Add current alpha of protobuf 3

This commit is contained in:
Eduard Bachmakov
2015-07-26 20:00:34 -04:00
parent 9d5508d85c
commit 67c186a7ea
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ callPackage, fetchFromGitHub, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "3.0.0-alpha-3.1";
# make sure you test also -A pythonPackages.protobuf
src = fetchFromGitHub {
owner = "google";
repo = "protobuf";
rev = "v${version}";
sha256 = "0vzw20ymjmjrrmg84f822qslclsb2q0wf0qdj2da198gmkkbrw45";
};
})