a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
19 lines
370 B
Nix
19 lines
370 B
Nix
{ 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";
|
|
};
|
|
}
|