Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / tsort / default.nix
blob1e40488080a8305163fdbbc06df600c857bf0e18
1 { lib, buildDunePackage, fetchFromGitHub, containers }:
3 buildDunePackage rec {
4   pname = "tsort";
5   version = "2.1.0";
6   src = fetchFromGitHub {
7     owner = "dmbaturin";
8     repo = "ocaml-tsort";
9     rev = version;
10     sha256 = "sha256-SCd0R8iGwMeRhhSxMid9lzqj5fm+owCJ2dzwtLpFqB4=";
11   };
13   propagatedBuildInputs = [ containers ];
15   meta = {
16     description = "Easy to use and user-friendly topological sort";
17     inherit (src.meta) homepage;
18     license = lib.licenses.mit;
19     maintainers = [ lib.maintainers.vbgl ];
20   };