Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 20 lines 463 B view raw
1{ lib, buildDunePackage, fetchFromGitHub }: 2 3buildDunePackage rec { 4 pname = "camlp-streams"; 5 version = "5.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "ocaml"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-kHuFBqu0mjFv53sOtmFZcX2reo5ToaOpItP7P53bfGQ="; 12 }; 13 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 }; 19 20}