Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 27 lines 680 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule { 8 pname = "pinecone"; 9 version = "0.11.0-unstable-2023-08-10"; 10 11 src = fetchFromGitHub { 12 owner = "matrix-org"; 13 repo = "pinecone"; 14 rev = "ea4c33717fd74ef7d6f49490625a0fa10e3f5bbc"; 15 hash = "sha256-q4EFWXSkQJ2n+xAWuBxdP7nrtv3eFql9LoavWo10dfs="; 16 }; 17 18 vendorHash = "sha256-+P10K7G0UwkbCGEi6sYTQSqO7LzIf/xmaHIr7v110Ao="; 19 20 meta = with lib; { 21 description = "Peer-to-peer overlay routing for the Matrix ecosystem"; 22 homepage = "https://matrix-org.github.io/pinecone/"; 23 license = licenses.asl20; 24 maintainers = with maintainers; [ networkexception ]; 25 mainProgram = "pinecone"; 26 }; 27}