-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge staging-next-24.11 into staging-24.11
- Loading branch information
Showing
74 changed files
with
862 additions
and
496 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23252,6 +23252,13 @@ | |
name = "Vinicius Bernardino"; | ||
keys = [ { fingerprint = "F0D3 920C 722A 541F 0CCD 66E3 A7BA BA05 3D78 E7CA"; } ]; | ||
}; | ||
vog = { | ||
email = "[email protected]"; | ||
github = "vog"; | ||
githubId = 412749; | ||
name = "Volker Diels-Grabsch"; | ||
keys = [ { fingerprint = "A7E6 9C4F 69DC 5D6C FC84 EE34 A29F BD51 5F89 90AF"; } ]; | ||
}; | ||
voidless = { | ||
email = "[email protected]"; | ||
github = "voidIess"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 0 additions & 69 deletions
69
pkgs/applications/audio/famistudio/build-native-wrapper.nix
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,36 @@ | ||
{ callPackage | ||
, timeshift-unwrapped | ||
, rsync | ||
, coreutils | ||
, mount | ||
, umount | ||
, psmisc | ||
, cron | ||
, btrfs-progs | ||
, grubPackage | ||
{ | ||
callPackage, | ||
btrfs-progs, | ||
coreutils, | ||
cron, | ||
grubPackage, | ||
mount, | ||
psmisc, | ||
rsync, | ||
timeshift-unwrapped, | ||
umount, | ||
}: | ||
let | ||
timeshift-wrapper = callPackage ./wrapper.nix { }; | ||
in | ||
(timeshift-wrapper timeshift-unwrapped ([ | ||
rsync | ||
(timeshift-wrapper timeshift-unwrapped [ | ||
btrfs-progs | ||
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 | ||
''; | ||
}; | ||
}) | ||
mount | ||
psmisc | ||
rsync | ||
umount | ||
]).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 btrfs. | ||
If you want to use the commands provided by the system, use timeshift-minimal instead. | ||
''; | ||
}; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
{ callPackage | ||
, timeshift-unwrapped | ||
{ | ||
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. | ||
''; | ||
longDescription = | ||
oldAttrs.meta.longDescription | ||
+ '' | ||
This package is a wrapped version of timeshift-unwrapped | ||
without runtime dependencies of command utilities. | ||
''; | ||
}; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.