Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ reason, fp, ... }:
2
3{
4 pname = "dir";
5
6 nativeBuildInputs = [
7 reason
8 ];
9
10 propagatedBuildInputs = [
11 fp
12 ];
13
14 meta = {
15 description = "A library that provides a consistent API for common system, user and application directories consistently on all platforms";
16 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/dir";
17 };
18}