Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 15 lines 406 B view raw
1{ buildDunePackage, git, cohttp-lwt, alcotest, mtime, nocrypto }: 2 3buildDunePackage rec { 4 pname = "git-http"; 5 inherit (git) version src; 6 7 buildInputs = [ alcotest mtime nocrypto ]; 8 propagatedBuildInputs = [ git cohttp-lwt ]; 9 doCheck = true; 10 11 meta = { 12 description = "Client implementation of the Smart HTTP Git protocol in pure OCaml"; 13 inherit (git.meta) homepage license maintainers; 14 }; 15}