Merge branch 'staging' into staging-next

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