98eb3e9ef5
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
23 lines
542 B
Nix
23 lines
542 B
Nix
{ lib, buildDunePackage, reason, fp, src }:
|
|
|
|
buildDunePackage {
|
|
inherit src;
|
|
|
|
pname = "dir";
|
|
version = "0.0.1-unstable-2024-05-07";
|
|
|
|
nativeBuildInputs = [
|
|
reason
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
fp
|
|
];
|
|
|
|
meta = {
|
|
description = "Library that provides a consistent API for common system, user and application directories consistently on all platforms";
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/dir";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|