Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 24 lines 541 B view raw
1{ 2 lib, 3 fetchurl, 4 buildDunePackage, 5}: 6 7buildDunePackage rec { 8 pname = "ocamlgraph"; 9 version = "2.2.0"; 10 11 src = fetchurl { 12 url = "https://github.com/backtracking/ocamlgraph/releases/download/${version}/ocamlgraph-${version}.tbz"; 13 hash = "sha256-sJViEIY8wk9IAgO6PC7wbfrlV5U2oFdENk595YgisjA="; 14 }; 15 16 minimalOCamlVersion = "4.08"; 17 18 meta = with lib; { 19 homepage = "https://github.com/backtracking/ocamlgraph"; 20 description = "Graph library for OCaml"; 21 license = licenses.lgpl21Only; 22 maintainers = [ ]; 23 }; 24}