mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
5c96c4d284
Init all tezos packages needed to build LIGO
23 lines
422 B
Nix
23 lines
422 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, tezos-stdlib
|
|
, tezos-workers
|
|
, tezos-p2p-services
|
|
, tezos-version
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "tezos-shell-services";
|
|
inherit (tezos-stdlib) version src useDune2 preBuild doCheck;
|
|
|
|
propagatedBuildInputs = [
|
|
tezos-workers
|
|
tezos-p2p-services
|
|
tezos-version
|
|
];
|
|
|
|
meta = tezos-stdlib.meta // {
|
|
description = "Tezos: descriptions of RPCs exported by `tezos-shell`";
|
|
};
|
|
}
|