841d9c7fc1
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
18 lines
364 B
Nix
18 lines
364 B
Nix
{ 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";
|
|
};
|
|
}
|