19 lines
364 B
Nix
19 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";
|
||
|
};
|
||
|
}
|