ocamlPackages.tsort: init at 2.0.0
This commit is contained in:
parent
1e90205316
commit
017c7a4940
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue