nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / camlp-streams / default.nix
blobcabccf89e7fc4fc3c11c63c864867eb632505c54
2   lib,
3   buildDunePackage,
4   fetchFromGitHub,
5 }:
7 buildDunePackage rec {
8   pname = "camlp-streams";
9   version = "5.0.1";
11   src = fetchFromGitHub {
12     owner = "ocaml";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-kHuFBqu0mjFv53sOtmFZcX2reo5ToaOpItP7P53bfGQ=";
16   };
18   meta = {
19     description = "Stream and Genlex libraries for use with Camlp4 and Camlp5";
20     license = lib.licenses.lgpl21Only;
21     maintainers = [ lib.maintainers.vbgl ];
22   };