about summary refs log tree commit diff
path: root/pkgs/applications/backup/timeshift/minimal.nix
blob: 96946fa72e0533ba919c74e6f2d7d27a7c871e67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ callPackage
, timeshift-unwrapped
}:
let
  timeshift-wrapper = callPackage ./wrapper.nix { };
in
(timeshift-wrapper timeshift-unwrapped [ ]).overrideAttrs (oldAttrs: {
  meta = oldAttrs.meta // {
    description = oldAttrs.meta.description + " (without runtime dependencies)";
    longDescription = oldAttrs.meta.longDescription + ''
      This package is a wrapped version of timeshift-unwrapped
      without runtime dependencies of command utilities.
    '';
  };
})