1{
2 callPackage,
3 timeshift-unwrapped,
4}:
5let
6 timeshift-wrapper = callPackage ./wrapper.nix { };
7in
8(timeshift-wrapper timeshift-unwrapped [ ]).overrideAttrs (oldAttrs: {
9 meta = oldAttrs.meta // {
10 description = oldAttrs.meta.description + " (without runtime dependencies)";
11 longDescription = oldAttrs.meta.longDescription + ''
12 This package is a wrapped version of timeshift-unwrapped
13 without runtime dependencies of command utilities.
14 '';
15 };
16})