mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
27 lines
841 B
Nix
27 lines
841 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "go-libp2p-daemon";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libp2p";
|
|
repo = "go-libp2p-daemon";
|
|
rev = "v${version}";
|
|
hash = "sha256-xKipt+nh7hFJHb9EmI0JZjBTuewfs82vOk1FC97sbAw=";
|
|
};
|
|
|
|
vendorHash = "sha256-60+JcyVV0uW+T0JZ/keyeYJNWrR3BhLInIgwbpoAe/Q=";
|
|
|
|
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 = "Libp2p-backed daemon wrapping the functionalities of go-libp2p for use in other languages";
|
|
homepage = "https://github.com/libp2p/go-libp2p-daemon";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fare ];
|
|
};
|
|
}
|