about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reason-native/fp.nix
blob: 7df1c84e55cf99ded2e592f111427150ab6872fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ reason, ... }:

{
  pname = "fp";

  nativeBuildInputs = [
    reason
  ];

  meta = {
    description = "Library for creating and operating on file paths consistently on multiple platforms";
    downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/fp";
  };
}