nixpkgs/pkgs/servers/go-libp2p-daemon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
843 B
Nix
Raw Normal View History

2020-11-01 01:21:55 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2023-07-05 02:51:14 +00:00
buildGoModule rec {
2020-11-01 01:21:55 +00:00
pname = "go-libp2p-daemon";
2024-05-16 13:10:37 +00:00
version = "0.6.1";
2020-11-01 01:21:55 +00:00
src = fetchFromGitHub {
owner = "libp2p";
repo = "go-libp2p-daemon";
2023-07-05 02:51:14 +00:00
rev = "v${version}";
2024-05-16 13:10:37 +00:00
hash = "sha256-XXg1qIACAHgK1/PltwuoNVYrsntfzo71g1dlq9V/FS4=";
2020-11-01 01:21:55 +00:00
};
2024-04-29 13:09:49 +00:00
vendorHash = "sha256-Kdxo0QsS7o9BjSG6qFrlCnqyZXhX6NkT/aUznGrm3xo=";
2020-11-01 01:21:55 +00:00
doCheck = false;
meta = with lib; {
# Won't build with Go >1.20 because of outdated quic-go dependency and interface mismatches on update.
# https://github.com/libp2p/go-libp2p-daemon/issues/291
broken = true;
description = "a libp2p-backed daemon wrapping the functionalities of go-libp2p for use in other languages";
2020-11-01 01:21:55 +00:00
homepage = "https://github.com/libp2p/go-libp2p-daemon";
license = licenses.mit;
maintainers = with maintainers; [ fare ];
};
}