Files
continuwuity/nix/packages/default.nix
T

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

17 lines
265 B
Nix
Raw Normal View History

2025-09-24 14:33:20 +02:00
{
imports = [
./continuwuity
./rust.nix
./uwulib
];
2025-10-21 19:17:55 +02:00
perSystem =
2026-03-30 21:00:15 -04:00
{ self', pkgs, ... }:
2025-10-21 19:17:55 +02:00
{
2026-03-30 21:00:15 -04:00
packages = {
default = self'.packages.continuwuity-default-bin;
rocksdb = pkgs.callPackage ./rocksdb.nix { };
};
2025-10-21 19:17:55 +02:00
};
2025-09-24 14:33:20 +02:00
}