nixpkgs/pkgs/development/ocaml-modules/reason-native/dir.nix

19 lines
364 B
Nix
Raw Normal View History

{ reason, fp, ... }:
{
pname = "dir";
buildInputs = [
reason
];
propagatedBuildInputs = [
fp
];
meta = {
description = "A library that provides a consistent API for common system, user and application directories consistently on all platforms";
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/dir";
};
}