fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / ocaml-modules / directories / default.nix
blobe90a1ce19222f90f3e323916d441716565146ab6
2   lib,
3   fetchFromGitHub,
4   buildDunePackage,
5 }:
7 buildDunePackage rec {
8   pname = "directories";
9   version = "0.5";
10   useDune2 = true;
12   minimalOCamlVersion = "4.07";
14   src = fetchFromGitHub {
15     owner = "ocamlpro";
16     repo = pname;
17     rev = version;
18     sha256 = "sha256-31CGhmmfOORJ1ewgp+IU+p1+f2kfX/W+lxK7EGU62vc=";
19   };
21   meta = {
22     homepage = "https://github.com/ocamlpro/directories";
23     description = "OCaml library that provides configuration, cache and data paths (and more!) following the suitable conventions on Linux, macOS and Windows";
24     longDescription = ''
25       directories is an OCaml library that provides configuration, cache and
26       data paths (and more!) following the suitable conventions on Linux, macOS
27       and Windows. It is inspired by similar libraries for other languages such
28       as directories-jvm.
30       The following conventions are used: XDG Base Directory Specification and
31       xdg-user-dirs on Linux, Known Folders on Windows, Standard Directories on
32       macOS.
33     '';
34     license = lib.licenses.isc;
35     maintainers = with lib.maintainers; [ bcc32 ];
36   };