nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildGo124Module,
4 fetchFromGitHub,
5}:
6
7buildGo124Module {
8 pname = "pinecone";
9 version = "0.11.0-unstable-2025-03-04";
10
11 src = fetchFromGitHub {
12 owner = "matrix-org";
13 repo = "pinecone";
14 rev = "b35aec69f59eb9bb8bd5a8c6be30fc276d3cce96";
15 hash = "sha256-0jqvWdFjN4Kzhkv4Oe1obsKGW0i/MGEMX3ZhcxpsdxA=";
16 };
17
18 vendorHash = "sha256-+P10K7G0UwkbCGEi6sYTQSqO7LzIf/xmaHIr7v110Ao=";
19
20 meta = {
21 description = "Peer-to-peer overlay routing for the Matrix ecosystem";
22 homepage = "https://matrix-org.github.io/pinecone/";
23 license = lib.licenses.asl20;
24 maintainers = with lib.maintainers; [ networkexception ];
25 mainProgram = "pinecone";
26 };
27}