Skip to content

Commit

Permalink
parseable: init at 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyakooo0 committed Jan 9, 2025
1 parent 00c24cc commit 68632ed
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pkgs/by-name/pa/parseable/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
lib,
rdkafka,
pkg-config,
fetchFromGitHub,
rustPlatform,
fetchzip,
}:

rustPlatform.buildRustPackage rec {
pname = "parseable";
version = "1.7.1";

src = fetchFromGitHub {
owner = "parseablehq";
repo = "parseable";
rev = "v${version}";
sha256 = "sha256-Uoejniv6hUpxTZ6gosP+LHTo4FD+o1AlUEWopdpz5M0=";
};

LOCAL_ASSETS_PATH = fetchzip {
url = "https://github.com/parseablehq/console/releases/download/v0.9.15/build.zip";
hash = "sha256-T37pI7adfKPDkCETcGcZVzcYVcxROSZLDrFhV4XO4tc=";
};

useFetchCargoVendor = true;
cargoHash = "sha256-rT/ORTOPsOgYlS8VCMBXo/cjfSJYcCtJofcPEIlc/cI=";

nativeBuildInputs = [ pkg-config ];

buildInputs = [ rdkafka ];

buildFeatures = [ "rdkafka/dynamic-linking" ];

meta = with lib; {
description = "A disk less, cloud native database for logs, observability, security, and compliance.";
homepage = "https://www.parseable.com";
license = licenses.agpl3Only;
maintainers = with maintainers; [ ilyakooo0 ];
};
}

0 comments on commit 68632ed

Please sign in to comment.