My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/reason-native/dir.nix

18 lines
370 B

{ reason, fp, ... }:
{
pname = "dir";
nativeBuildInputs = [
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";
};
}