Commit 3dd248db authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.ocamlgraph: 2.0.0 → 2.1.0

parent 93c0e347
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -2,23 +2,21 @@

buildDunePackage rec {
  pname = "ocamlgraph";
  version = "2.0.0";
  version = "2.1.0";

  src = fetchurl {
    url = "https://github.com/backtracking/ocamlgraph/releases/download/${version}/ocamlgraph-${version}.tbz";
    sha256 = "029692bvdz3hxpva9a2jg5w5381fkcw55ysdi8424lyyjxvjdzi0";
    hash = "sha256-D5YsNvklPfI5OVWvQbB0tqQmsvkqne95WyAFtX0wLWU=";
  };

  minimalOCamlVersion = "4.03";
  useDune2 = true;
  minimalOCamlVersion = "4.08";

  propagatedBuildInputs = [
    stdlib-shims
  ];

  meta = with lib; {
      homepage = "http://ocamlgraph.lri.fr/";
      downloadPage = "https://github.com/backtracking/ocamlgraph";
      homepage = "https://github.com/backtracking/ocamlgraph";
      description = "Graph library for OCaml";
      license = licenses.gpl2Oss;
      maintainers = with maintainers; [ ];
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

buildDunePackage rec {
  pname = "ocamlgraph_gtk";
  inherit (ocamlgraph) version src useDune2 meta;
  inherit (ocamlgraph) version src meta;

  propagatedBuildInputs = [
    lablgtk