mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
13 lines
264 B
Nix
13 lines
264 B
Nix
{ lib, buildDunePackage, resto, json-data-encoding, json-data-encoding-bson }:
|
|
|
|
buildDunePackage {
|
|
pname = "resto-json";
|
|
inherit (resto) src version meta doCheck;
|
|
|
|
propagatedBuildInputs = [
|
|
resto
|
|
json-data-encoding
|
|
json-data-encoding-bson
|
|
];
|
|
}
|