ocamlPackages.tsort: init at 2.0.0

This commit is contained in:
Vincent Laporte 2020-07-09 18:24:48 +02:00 committed by Vincent Laporte
parent 1e90205316
commit 017c7a4940
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ lib, buildDunePackage, fetchFromGitHub, containers }:
buildDunePackage rec {
pname = "tsort";
version = "2.0.0";
src = fetchFromGitHub {
owner = "dmbaturin";
repo = "ocaml-tsort";
rev = version;
sha256 = "0i67ys5p5i8q9p0nhkq4pjg9jav8dy0fiy975a365j7m6bhrwgc1";
};
propagatedBuildInputs = [ containers ];
meta = {
description = "Easy to use and user-friendly topological sort";
inherit (src.meta) homepage;
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -758,6 +758,8 @@ let
sqlexpr = callPackage ../development/ocaml-modules/sqlexpr { };
tsort = callPackage ../development/ocaml-modules/tsort { };
tuntap = callPackage ../development/ocaml-modules/tuntap { };
tyxml = callPackage ../development/ocaml-modules/tyxml { };