mirror of
https://github.com/zhaofengli/attic.git
synced 2024-12-15 17:50:57 +00:00
9 lines
283 B
Nix
9 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;
|
||
|
};
|
||
|
})
|