Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
737 B
Nix
28 lines
737 B
Nix
{ lib, fetchFromGitHub, ... }:
|
|
|
|
{
|
|
pname = "gerbil-libp2p";
|
|
version = "unstable-2022-02-03";
|
|
git-version = "15b3246";
|
|
softwareName = "Gerbil-libp2p";
|
|
gerbil-package = "vyzo";
|
|
|
|
buildInputs = [ ]; # Note: at *runtime*, this depends on go-libp2p-daemon running
|
|
|
|
pre-src = {
|
|
fun = fetchFromGitHub;
|
|
owner = "vyzo";
|
|
repo = "gerbil-libp2p";
|
|
rev = "15b32462e683d89ffce0ff15ad373d293ea0ee5d";
|
|
sha256 = "059lydp7d6pjgrd4pdnqq2zffzlba62ch102f01rgzf9aps3c8lz";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Gerbil libp2p: use libp2p from Gerbil";
|
|
homepage = "https://github.com/vyzo/gerbil-libp2p";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ fare ];
|
|
};
|
|
}
|