timeshift: remove `with lib;` from `meta`

Changed files
+4 -4
pkgs
applications
backup
timeshift
+4 -4
pkgs/applications/backup/timeshift/unwrapped.nix
···
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
};
-
meta = with lib; {
description = "System restore tool for Linux";
longDescription = ''
TimeShift creates filesystem snapshots using rsync+hardlinks or BTRFS snapshots.
Snapshots can be restored using TimeShift installed on the system or from Live CD or USB.
'';
homepage = "https://github.com/linuxmint/timeshift";
-
license = licenses.gpl2Plus;
-
platforms = platforms.linux;
-
maintainers = with maintainers; [
ShamrockLee
bobby285271
];
···
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
};
+
meta = {
description = "System restore tool for Linux";
longDescription = ''
TimeShift creates filesystem snapshots using rsync+hardlinks or BTRFS snapshots.
Snapshots can be restored using TimeShift installed on the system or from Live CD or USB.
'';
homepage = "https://github.com/linuxmint/timeshift";
+
license = lib.licenses.gpl2Plus;
+
platforms = lib.platforms.linux;
+
maintainers = with lib.maintainers; [
ShamrockLee
bobby285271
];