Compare commits
No commits in common. "0686b9b7786ff1811fc58c482f7247ea29eb1e72" and "d4aacdc21b999802b27183b786edbb7c60872155" have entirely different histories.
0686b9b778
...
d4aacdc21b
@ -25,7 +25,7 @@ let
|
|||||||
stripJavaArchivesHook = final.makeSetupHook {
|
stripJavaArchivesHook = final.makeSetupHook {
|
||||||
name = "strip-java-archives-hook";
|
name = "strip-java-archives-hook";
|
||||||
propagatedBuildInputs = [ final.strip-nondeterminism ];
|
propagatedBuildInputs = [ final.strip-nondeterminism ];
|
||||||
} ./strip-java-archives.sh;
|
} "${nixfiles.inputs.nixpkgs-unstable}/pkgs/build-support/setup-hooks/strip-java-archives.sh";
|
||||||
|
|
||||||
in {
|
in {
|
||||||
vesktop = backport' "vesktop";
|
vesktop = backport' "vesktop";
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
# This setup hook makes the fixup phase to repack all java archives in a
|
|
||||||
# deterministic fashion. The most important change being done is the resetting
|
|
||||||
# of the modification times of the archive entries
|
|
||||||
|
|
||||||
fixupOutputHooks+=('stripJavaArchivesIn $prefix')
|
|
||||||
|
|
||||||
stripJavaArchivesIn() {
|
|
||||||
local dir="$1"
|
|
||||||
echo "stripping java archives in $dir"
|
|
||||||
find $dir -type f -regextype posix-egrep -regex ".*\.(jar|war|hpi|apk)$" -print0 |
|
|
||||||
while IFS= read -rd '' f; do
|
|
||||||
echo "stripping java archive $f"
|
|
||||||
strip-nondeterminism --type jar "$f"
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
@ -10,7 +10,6 @@ in
|
|||||||
services = {
|
services = {
|
||||||
power-profiles-daemon.enable = mkDefault true;
|
power-profiles-daemon.enable = mkDefault true;
|
||||||
blueman.enable = mkDefault config.hardware.bluetooth.enable;
|
blueman.enable = mkDefault config.hardware.bluetooth.enable;
|
||||||
udisks2.enable = mkDefault true;
|
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
nm-applet.enable = mkDefault config.networking.networkmanager.enable;
|
nm-applet.enable = mkDefault config.networking.networkmanager.enable;
|
||||||
|
@ -99,7 +99,6 @@ in
|
|||||||
nix-du
|
nix-du
|
||||||
graphviz # for nix-du
|
graphviz # for nix-du
|
||||||
nvd
|
nvd
|
||||||
nix-diff
|
|
||||||
|
|
||||||
# secrets
|
# secrets
|
||||||
age
|
age
|
||||||
|
Loading…
x
Reference in New Issue
Block a user