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

{
  pname = "fp";

  buildInputs = [
    reason
  ];

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