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.

25 lines
655 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-06-05 20:11:07 +00:00
version = "0.8.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-06-05 20:11:07 +00:00
hash = "sha256-UIiP6Tb0ys1slB4YQ2m7KlrHIZDfUaKs4RAyuxWBhhw=";
2020-11-01 01:21:55 +00:00
};
2024-05-29 13:17:35 +00:00
vendorHash = "sha256-60+JcyVV0uW+T0JZ/keyeYJNWrR3BhLInIgwbpoAe/Q=";
2020-11-01 01:21:55 +00:00
doCheck = false;
meta = with lib; {
description = "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 ];
};
}