This commit is contained in:
Hadi
2025-09-24 17:20:03 +02:00
commit b9fbed9a54
83 changed files with 6241 additions and 0 deletions

21
nix/leak-utils.nix Normal file
View File

@@ -0,0 +1,21 @@
{
pkgs,
lib,
self,
}: let
name = "leak-utils";
package = pkgs.buildGoModule {
pname = name;
version = "0.1.0";
src = ../leak-utils;
vendorHash = "sha256-NDY3T3FhQ2iXJr3v3sxTX9taVTU9LPCLd/emWukHZcs=";
buildInputs = [
pkgs.duckdb
pkgs.arrow-cpp
];
};
in {
package = package;
}