9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
31 lines
843 B
Nix
31 lines
843 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "egglog";
|
|
version = "unstable-2023-07-11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "egraphs-good";
|
|
repo = "egglog";
|
|
rev = "14a6fc6060c09541728ae460e0a92909fabf508f";
|
|
hash = "sha256-1osdjd86xZHUAwvPBNxWYlkX6tKt+jI05AEVYr77YSQ=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"symbol_table-0.2.0" = "sha256-f9UclMOUig+N5L3ibBXou0pJ4S/CQqtaji7tnebVbis=";
|
|
"symbolic_expressions-5.0.3" = "sha256-mSxnhveAItlTktQC4hM8o6TYjgtCUgkdZj7i6MR4Oeo=";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A fixpoint reasoning system that unifies Datalog and equality saturation";
|
|
homepage = "https://github.com/egraphs-good/egglog";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|