Merge branch 'staging' into staging-next

+14 -17
+1 -7
pkgs/development/libraries/qt-5/5.15/default.nix
··· 56 56 qtdeclarative = [ ./qtdeclarative.patch ]; 57 57 qtscript = [ ./qtscript.patch ]; 58 58 qtserialport = [ ./qtserialport.patch ]; 59 - qtwebengine = [ 60 - # glibc 2.34 compat 61 - (fetchpatch { 62 - url = "https://src.fedoraproject.org/rpms/qt5-qtwebengine/raw/d122c011631137b79455850c363676c655cf9e09/f/qtwebengine-everywhere-src-5.15.5-SIGSTKSZ.patch"; 63 - sha256 = "sha256-1zS7nvbe5ZVuW/wSNOUBc2Qz0aB483Kfnz1JbzKEI+M="; 64 - }) 65 - ] ++ lib.optionals stdenv.isDarwin [ 59 + qtwebengine = lib.optionals stdenv.isDarwin [ 66 60 ./qtwebengine-darwin-no-platform-check.patch 67 61 ./qtwebengine-mac-dont-set-dsymutil-path.patch 68 62 ];
+9 -6
pkgs/development/python-modules/convertdate/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , isPy27 4 3 , fetchFromGitHub 5 4 , pymeeus 6 5 , pytz 7 6 , pytestCheckHook 7 + , pythonOlder 8 8 }: 9 9 10 10 buildPythonPackage rec { 11 11 pname = "convertdate"; 12 12 version = "2.4.0"; 13 - disabled = isPy27; 13 + format = "setuptools"; 14 14 15 - # Tests are not available in the PyPI tarball so use GitHub instead. 15 + disabled = pythonOlder "3.7"; 16 + 16 17 src = fetchFromGitHub { 17 18 owner = "fitnr"; 18 19 repo = pname; 19 20 rev = "v${version}"; 20 - sha256 = "sha256-iOHK3UJulXJJR50nhiVgfk3bt+CAtG3BRySJ8DkBuJE="; 21 + hash = "sha256-iOHK3UJulXJJR50nhiVgfk3bt+CAtG3BRySJ8DkBuJE="; 21 22 }; 22 23 23 24 propagatedBuildInputs = [ ··· 29 30 pytestCheckHook 30 31 ]; 31 32 32 - pythonImportsCheck = [ "convertdate" ]; 33 + pythonImportsCheck = [ 34 + "convertdate" 35 + ]; 33 36 34 37 meta = with lib; { 38 + description = "Utils for converting between date formats and calculating holidays"; 35 39 homepage = "https://github.com/fitnr/convertdate"; 36 - description = "Utils for converting between date formats and calculating holidays"; 37 40 license = licenses.mit; 38 41 maintainers = with maintainers; [ jluttine ]; 39 42 };
+2 -2
pkgs/os-specific/linux/systemd/default.nix
··· 127 127 let 128 128 wantCurl = withRemote || withImportd; 129 129 wantGcrypt = withResolved || withImportd; 130 - version = "250.3"; 130 + version = "250.4"; 131 131 132 132 # Bump this variable on every (major) version change. See below (in the meson options list) for why. 133 133 # command: ··· 144 144 owner = "systemd"; 145 145 repo = "systemd-stable"; 146 146 rev = "v${version}"; 147 - sha256 = "sha256-O1XE0BhIuDAlFVX7WIy02M9YTIxLX0Q8atJAYsUgQDQ="; 147 + sha256 = "sha256-AdzPh7dGVrGbbjL9+PqytQOpRzNDUUEftmKZAbFH3L4="; 148 148 }; 149 149 150 150 # On major changes, or when otherwise required, you *must* reformat the patches,
+2 -2
pkgs/tools/filesystems/btrfs-progs/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "btrfs-progs"; 10 - version = "5.16.1"; 10 + version = "5.16.2"; 11 11 12 12 src = fetchurl { 13 13 url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; 14 - sha256 = "sha256-PaTaU2HPhr3dqA7bTE8w6gdstOvsKZBPoIr8kw754ag="; 14 + sha256 = "sha256-npswOh0P2c6q8gTudMHI+h/VV5TiI9n+K8Yodey9U9I="; 15 15 }; 16 16 17 17 nativeBuildInputs = [