biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / camlp-streams / default.nix
blob1e2a71cc0b9d5fa074a896309dbceaf2b85703d7
1 { lib, buildDunePackage, fetchFromGitHub }:
3 buildDunePackage rec {
4   pname = "camlp-streams";
5   version = "5.0.1";
7   src = fetchFromGitHub {
8     owner = "ocaml";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-kHuFBqu0mjFv53sOtmFZcX2reo5ToaOpItP7P53bfGQ=";
12   };
14   meta = {
15     description = "Stream and Genlex libraries for use with Camlp4 and Camlp5";
16     license = lib.licenses.lgpl21Only;
17     maintainers = [ lib.maintainers.vbgl ];
18   };