mirror of
https://github.com/zhaofengli/attic.git
synced 2024-12-14 11:57:30 +00:00
14 lines
232 B
Nix
14 lines
232 B
Nix
{ makeCranePkgs, ... }:
|
|
{
|
|
flake.overlays = {
|
|
default = final: prev: let
|
|
cranePkgs = makeCranePkgs final;
|
|
in {
|
|
inherit (cranePkgs)
|
|
attic
|
|
attic-client
|
|
attic-server
|
|
;
|
|
};
|
|
};
|
|
}
|