about summary refs log tree commit diff
path: root/pkgs/applications/backup/timeshift/default.nix
blob: 0a6a9bf38865debc9fbbaa07d91024d2b0504723 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ callPackage
, timeshift-unwrapped
, lib
, rsync
, coreutils
, mount
, umount
, psmisc
, cron
, btrfs-progs
, grubPackage
}:
let
  timeshift-wrapper = callPackage ./wrapper.nix { };
in
(timeshift-wrapper timeshift-unwrapped ([
  rsync
  coreutils
  mount
  umount
  psmisc
  cron
  btrfs-progs
  grubPackage
])).overrideAttrs (oldAttrs: {
  meta = oldAttrs.meta // {
    description = oldAttrs.meta.description;
    longDescription = oldAttrs.meta.longDescription + ''
      This package comes with runtime dependencies of command utilities provided by rsync, coreutils, mount, umount, psmisc, cron and (optionally) btrfs.
      If you want to use the commands provided by the system, override the propagatedBuildInputs or use timeshift-minimal instead
    '';
  };
})