Files
continuwuity/nix/packages/rocksdb/default.nix
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
148 B
Nix
Raw Normal View History

2025-09-24 14:33:20 +02:00
{
perSystem =
{
pkgs,
...
}:
{
packages = {
rocksdb = pkgs.callPackage ./package.nix { };
2025-09-24 14:33:20 +02:00
};
};
}