0fe1cd7bea
GitOrigin-RevId: c6c4a3d45ab200f17805d2d86a1ff1cc7ca2b186
12 lines
214 B
Nix
12 lines
214 B
Nix
{ lib, buildDunePackage, resto, resto-json, uri }:
|
|
|
|
buildDunePackage {
|
|
pname = "ezresto";
|
|
inherit (resto) src version meta useDune2 doCheck;
|
|
|
|
propagatedBuildInputs = [
|
|
uri
|
|
resto
|
|
resto-json
|
|
];
|
|
}
|