Files
nixpkgs/pkgs/by-name/eg/egglog/package.nix
Michael Daniels 1d0bb7b61b treewide: drop figsoda as maintainer (part 3)
s/^\s*figsoda\s*$//
2025-11-02 20:16:11 -05:00

32 lines
681 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "egglog";
version = "0.4.0";
src = fetchFromGitHub {
owner = "egraphs-good";
repo = "egglog";
rev = "v${version}";
hash = "sha256-j+3qknmezKqHVxvfmG9oPFtWOzJsimGXYe5PWX694mI=";
};
cargoHash = "sha256-gWccsWZCOucNP6M6cJqCMF8emwzqLXkaRm/huK4ARTs=";
useNextest = true;
meta = with lib; {
description = "Fixpoint reasoning system that unifies Datalog and equality saturation";
mainProgram = "egglog";
homepage = "https://github.com/egraphs-good/egglog";
license = licenses.mit;
maintainers = with maintainers; [
XBagon
];
};
}