mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
timeshift: sort dependencies alphabetically
This commit is contained in:
@@ -1,28 +1,28 @@
|
||||
{
|
||||
callPackage,
|
||||
timeshift-unwrapped,
|
||||
rsync,
|
||||
coreutils,
|
||||
mount,
|
||||
umount,
|
||||
psmisc,
|
||||
cron,
|
||||
btrfs-progs,
|
||||
coreutils,
|
||||
cron,
|
||||
grubPackage,
|
||||
mount,
|
||||
psmisc,
|
||||
rsync,
|
||||
timeshift-unwrapped,
|
||||
umount,
|
||||
}:
|
||||
let
|
||||
timeshift-wrapper = callPackage ./wrapper.nix { };
|
||||
in
|
||||
(timeshift-wrapper timeshift-unwrapped ([
|
||||
rsync
|
||||
coreutils
|
||||
mount
|
||||
umount
|
||||
psmisc
|
||||
cron
|
||||
(timeshift-wrapper timeshift-unwrapped [
|
||||
btrfs-progs
|
||||
coreutils
|
||||
cron
|
||||
grubPackage
|
||||
])).overrideAttrs
|
||||
mount
|
||||
psmisc
|
||||
rsync
|
||||
umount
|
||||
]).overrideAttrs
|
||||
(oldAttrs: {
|
||||
meta = oldAttrs.meta // {
|
||||
description = oldAttrs.meta.description;
|
||||
|
||||
@@ -15,8 +15,8 @@ stdenvNoCC.mkDerivation {
|
||||
dontUnpack = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
xorg.lndir
|
||||
wrapGAppsHook3
|
||||
xorg.lndir
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
|
||||
Reference in New Issue
Block a user