1{
2 lib,
3 buildDunePackage,
4 reason,
5 src,
6}:
7
8buildDunePackage {
9 inherit src;
10
11 pname = "fp";
12 version = "0.0.1-unstable-2024-05-07";
13
14 nativeBuildInputs = [
15 reason
16 ];
17
18 meta = {
19 description = "Library for creating and operating on file paths consistently on multiple platforms";
20 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/fp";
21 license = lib.licenses.mit;
22 maintainers = [ ];
23 };
24}