forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / fs.nix
blobfc65551a2481ee80043afb5a5fc65523c601ff18
1 { lib, buildDunePackage, fp, reason, src }:
3 buildDunePackage {
4   inherit src;
6   pname = "fs";
7   version = "0.0.2-unstable-2024-05-07";
9   nativeBuildInputs = [
10     reason
11   ];
13   propagatedBuildInputs = [
14     fp
15   ];
17   meta = {
18     description = "Reason Native file system API";
19     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/fs";
20     license = lib.licenses.mit;
21     maintainers = [ ];
22   };