depot/third_party/nixpkgs/pkgs/development/idris-modules/protobuf.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

25 lines
607 B
Nix

{ build-idris-package
, fetchFromGitHub
, lightyear
, lib
}:
build-idris-package {
name = "protobuf";
version = "2017-08-12";
idrisDeps = [ lightyear ];
src = fetchFromGitHub {
owner = "artagnon";
repo = "idris-protobuf";
rev = "c21212534639518453d16ae1b0f07d94464ff8eb";
sha256 = "0n5w7bdbxqca3b7hzg95md01mx4sfvl9fi82xjm0hzds33akmn05";
};
meta = {
description = "A partial implementation of Protocol Buffers in Idris";
homepage = "https://github.com/artagnon/idris-protobuf";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.brainrape ];
};
}