protobufc: add missed file

This commit is contained in:
Nikolay Amiantov 2017-09-09 15:18:14 +03:00
parent 554ed27ebd
commit 0d558049cf

View file

@ -0,0 +1,11 @@
{ callPackage, fetchFromGitHub, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.3.0";
src = fetchFromGitHub {
owner = "protobuf-c";
repo = "protobuf-c";
rev = "v${version}";
sha256 = "0shk18rjhzn2lqrwk97ks3x8gj77isc8szyb3xsgjrbrvkzjgvaa";
};
})