Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 fetchFromGitHub, 5}: 6 7buildDunePackage rec { 8 pname = "camlp-streams"; 9 version = "5.0.1"; 10 11 src = fetchFromGitHub { 12 owner = "ocaml"; 13 repo = pname; 14 rev = "v${version}"; 15 sha256 = "sha256-kHuFBqu0mjFv53sOtmFZcX2reo5ToaOpItP7P53bfGQ="; 16 }; 17 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 }; 23 24}