evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / dir.nix
blob9b166beb40cb3989fda9e1068697a1b67b3fb62b
1 { lib, buildDunePackage, reason, fp, src }:
3 buildDunePackage {
4   inherit src;
6   pname = "dir";
7   version = "0.0.1-unstable-2024-05-07";
9   nativeBuildInputs = [
10     reason
11   ];
13   propagatedBuildInputs = [
14     fp
15   ];
17   meta = {
18     description = "Library that provides a consistent API for common system, user and application directories consistently on all platforms";
19     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/dir";
20     license = lib.licenses.mit;
21     maintainers = [ ];
22   };