mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
955df801e8
ocamlPackages.ocamlgraph: 1.8.8 -> 2.0.0 ocamlPackages.ocamlgraph_gtk: init 2.0.0 framac: fix for ocamlgraph 2.0.0
27 lines
716 B
Nix
27 lines
716 B
Nix
{ lib, fetchurl, buildDunePackage, stdlib-shims }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ocamlgraph";
|
|
version = "2.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/backtracking/ocamlgraph/releases/download/${version}/ocamlgraph-${version}.tbz";
|
|
sha256 = "029692bvdz3hxpva9a2jg5w5381fkcw55ysdi8424lyyjxvjdzi0";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.03";
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [
|
|
stdlib-shims
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://ocamlgraph.lri.fr/";
|
|
downloadPage = "https://github.com/backtracking/ocamlgraph";
|
|
description = "Graph library for OCaml";
|
|
license = licenses.gpl2Oss;
|
|
maintainers = with maintainers; [ kkallio superherointj ];
|
|
};
|
|
}
|