Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 77c79724 456c63eb

+8 -8
+1 -1
nixos/modules/virtualisation/ec2-metadata-fetcher.nix
··· 71 71 } 72 72 73 73 wget_imds -O "$metaDir/ami-manifest-path" http://169.254.169.254/1.0/meta-data/ami-manifest-path 74 - wget_imds -O "$metaDir/user-data" http://169.254.169.254/1.0/user-data && chmod 600 "$metaDir/user-data" 74 + (umask 077 && wget_imds -O "$metaDir/user-data" http://169.254.169.254/1.0/user-data) 75 75 wget_imds -O "$metaDir/hostname" http://169.254.169.254/1.0/meta-data/hostname 76 76 wget_imds -O "$metaDir/public-keys-0-openssh-key" http://169.254.169.254/1.0/meta-data/public-keys/0/openssh-key 77 77 ''
+1 -1
nixos/modules/virtualisation/openstack-metadata-fetcher.nix
··· 15 15 } 16 16 17 17 wget_imds -O "$metaDir/ami-manifest-path" http://169.254.169.254/1.0/meta-data/ami-manifest-path 18 - wget_imds -O "$metaDir/user-data" http://169.254.169.254/1.0/user-data && chmod 600 "$metaDir/user-data" 18 + (umask 077 && wget_imds -O "$metaDir/user-data" http://169.254.169.254/1.0/user-data) 19 19 wget_imds -O "$metaDir/hostname" http://169.254.169.254/1.0/meta-data/hostname 20 20 wget_imds -O "$metaDir/public-keys-0-openssh-key" http://169.254.169.254/1.0/meta-data/public-keys/0/openssh-key 21 21 ''
+4 -4
pkgs/applications/audio/spotify/default.nix
··· 1 1 { fetchurl, lib, stdenv, squashfsTools, xorg, alsaLib, makeWrapper, openssl, freetype 2 2 , glib, pango, cairo, atk, gdk-pixbuf, gtk3, cups, nspr, nss, libpng, libnotify 3 - , libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_3, curl, zlib, gnome3 3 + , libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg, curl, zlib, gnome3 4 4 , at-spi2-atk, at-spi2-core, libpulseaudio, libdrm, mesa, libxkbcommon 5 5 }: 6 6 ··· 29 29 curl 30 30 dbus 31 31 expat 32 - ffmpeg_3 32 + ffmpeg 33 33 fontconfig 34 34 freetype 35 35 gdk-pixbuf ··· 127 127 ln -s ${nspr.out}/lib/libnspr4.so $libdir/libnspr4.so 128 128 ln -s ${nspr.out}/lib/libplc4.so $libdir/libplc4.so 129 129 130 - ln -s ${ffmpeg_3.out}/lib/libavcodec.so* $libdir 131 - ln -s ${ffmpeg_3.out}/lib/libavformat.so* $libdir 130 + ln -s ${ffmpeg.out}/lib/libavcodec.so* $libdir 131 + ln -s ${ffmpeg.out}/lib/libavformat.so* $libdir 132 132 133 133 rpath="$out/share/spotify:$libdir" 134 134
+2 -2
pkgs/development/tools/rust/maturin/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "maturin"; 13 - version = "0.9.4"; 13 + version = "0.10.4"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "PyO3"; ··· 19 19 hash = "sha256-9emrBajFd0eLHcsd9Uf6MLCWqZFqxmZdWPBLGIYc2kU="; 20 20 }; 21 21 22 - cargoHash = "sha256-poMMEj+zrlU+v5axJbZai2kv36stEKgaciF4zd9A6Qg="; 22 + cargoSha256 = "113i7a5hpz7qch45wwapp53ixvgssnlxm0810yjicxp3k61ak30j"; 23 23 24 24 nativeBuildInputs = [ pkg-config ]; 25 25