1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-18 21:33:34 -04:00
nixpkgs/pkgs/by-name/pi/pinecone/package.nix
networkException 7e4138598b
pinecone: init at 0.11.0-unstable-2023-08-10
building release 0.11.0 is not possible with any golang version packaged
currently, as such we use the latest commit from the main branch (this
also fixes several security vulnerabilities).
2024-02-09 23:56:44 +01:00

24 lines
673 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule {
pname = "pinecone";
version = "0.11.0-unstable-2023-08-10";
src = fetchFromGitHub {
owner = "matrix-org";
repo = "pinecone";
rev = "ea4c33717fd74ef7d6f49490625a0fa10e3f5bbc";
hash = "sha256-q4EFWXSkQJ2n+xAWuBxdP7nrtv3eFql9LoavWo10dfs=";
};
vendorHash = "sha256-+P10K7G0UwkbCGEi6sYTQSqO7LzIf/xmaHIr7v110Ao=";
meta = with lib; {
description = "Peer-to-peer overlay routing for the Matrix ecosystem";
homepage = "https://matrix-org.github.io/pinecone/";
license = licenses.asl20;
maintainers = with maintainers; [ networkexception ];
mainProgram = "pinecone";
};
}