mirror of
https://github.com/zhaofengli/attic.git
synced 2024-12-14 11:57:30 +00:00
8 lines
283 B
Nix
8 lines
283 B
Nix
let
|
|
flake = import ./flake-compat.nix;
|
|
in flake.defaultNix.default.overrideAttrs (_: {
|
|
passthru = {
|
|
attic-client = flake.defaultNix.outputs.packages.${builtins.currentSystem}.attic-client;
|
|
demo = flake.defaultNix.outputs.devShells.${builtins.currentSystem}.demo;
|
|
};
|
|
})
|