13 lines
205 B
Nix
13 lines
205 B
Nix
{ buildDunePackage, dune }:
|
|
|
|
buildDunePackage {
|
|
pname = "fs-io";
|
|
inherit (dune) version src;
|
|
|
|
dontAddPrefix = true;
|
|
|
|
meta = dune.meta // {
|
|
description = "Dune's file system IO library";
|
|
};
|
|
}
|