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