mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
13 lines
214 B
Nix
13 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
|
||
|
];
|
||
|
}
|