Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 1f2e655c 40aed562

+140 -109
+2 -2
pkgs/applications/networking/browsers/brave/default.nix
··· 90 90 91 91 stdenv.mkDerivation rec { 92 92 pname = "brave"; 93 - version = "1.49.120"; 93 + version = "1.49.128"; 94 94 95 95 src = fetchurl { 96 96 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 97 - sha256 = "sha256-KSu6HaNKc7uVY1rSyzU+VZSE2dbIOOrsUx1RYKnz8yU="; 97 + sha256 = "sha256-TXAPzhNRupv8R2rKj/mFdubAVjOrnmbdBtmasTnqfyU="; 98 98 }; 99 99 100 100 dontConfigure = true;
+3 -3
pkgs/applications/networking/cluster/kubeone/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "kubeone"; 11 - version = "1.6.0"; 11 + version = "1.6.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "kubermatic"; 15 15 repo = "kubeone"; 16 16 rev = "v${version}"; 17 - hash = "sha256-NREZF27fzVKW/s7uCfsmTesEALwEzVBS4cUaatwDJJw="; 17 + hash = "sha256-bFkJXnz4Nm1XfQMaBWSHfCxaTbGQQwKXRd1ktZKs7hY="; 18 18 }; 19 19 20 - vendorHash = "sha256-riuEIR8V0j828S4XZrJULvYoe8ttJrA8MME0nxkaTwM="; 20 + vendorHash = "sha256-ZpTUhJyM+9e8b2EZzv4hsnV5G3HVPo6ga0pF3Ab53+A="; 21 21 22 22 ldflags = [ 23 23 "-s"
+2 -2
pkgs/data/themes/kwin-decorations/sierra-breeze-enhanced/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "sierra-breeze-enhanced"; 12 - version = "1.3.1"; 12 + version = "1.3.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "kupiqu"; 16 16 repo = "SierraBreezeEnhanced"; 17 17 rev = "V${version}"; 18 - sha256 = "sha256-x3OTLH8gcWrqpFGQPZHwvyPFwLhEGeHhU4cRqvtPupQ="; 18 + sha256 = "sha256-zTUTsSzy4p0Y7RPOidCtxTjjyvPRyWSQCxA5sUzXcLc="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
+22
pkgs/desktops/pantheon/desktop/gala/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , nix-update-script 5 6 , pkg-config 6 7 , meson ··· 38 39 # We look for plugins in `/run/current-system/sw/lib/` because 39 40 # there are multiple plugin providers (e.g. gala and wingpanel). 40 41 ./plugins-dir.patch 42 + 43 + # WindowClone: Don't calculate offset 44 + # https://github.com/elementary/gala/pull/1567 45 + (fetchpatch { 46 + url = "https://github.com/elementary/gala/commit/b7139add2333e5419afd1c82c3790d85044c1f76.patch"; 47 + sha256 = "sha256-QhBARbA3YEXB/RIM/gmFiry1IzGvFFQVXGDs0kGjf20="; 48 + }) 49 + 50 + # Map notification windows manually while switching workspace 51 + # https://github.com/elementary/gala/pull/1577 52 + (fetchpatch { 53 + url = "https://github.com/elementary/gala/commit/97b33173e2ee8b4a4af3fe0513b6d264de9d9b2a.patch"; 54 + sha256 = "sha256-y2PicvHxtKlZTpr6a0Hua1ppXpRwDItsIoGG2r+DAjQ="; 55 + }) 56 + 57 + # Use ClickAction for FramedBackground and close buttons 58 + # https://github.com/elementary/gala/pull/1579 59 + (fetchpatch { 60 + url = "https://github.com/elementary/gala/commit/79453b324d2e737ba32124212632e1269c6c9af1.patch"; 61 + sha256 = "sha256-ipOoY3dn0Hs1U2d9OER+ZfgC5AL4yay4FD8ongID/xY="; 62 + }) 41 63 ]; 42 64 43 65 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/acquire/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "acquire"; 20 - version = "3.4"; 20 + version = "3.5"; 21 21 format = "pyproject"; 22 22 23 23 disabled = pythonOlder "3.7"; ··· 26 26 owner = "fox-it"; 27 27 repo = "acquire"; 28 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-VkO+XLIC/UQzvfLsgbKcx9i8OxTC6J32nkxPHWWn7m8="; 29 + hash = "sha256-F0kKydFDL2XafK7A66qn3Ad/mGZU8x3UKtXtKpxHZqU="; 30 30 }; 31 31 32 32 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/ansible-doctor/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "ansible-doctor"; 21 - version = "2.0.1"; 21 + version = "2.0.2"; 22 22 format = "pyproject"; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "thegeeklab"; 28 28 repo = "ansible-doctor"; 29 29 rev = "refs/tags/v${version}"; 30 - hash = "sha256-xUg7+7oWxIVdKLOGIE1uxh7SSjkz/w0//OyMF1HhEJk="; 30 + hash = "sha256-hbHQbYc/cOqbeubAMa0J+UtI00jtyG/WUBe0xcSaGSI="; 31 31 }; 32 32 33 33 pythonRelaxDeps = true;
+2 -2
pkgs/development/python-modules/ansible-later/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "ansible-later"; 27 - version = "3.2.0"; 27 + version = "3.2.1"; 28 28 format = "pyproject"; 29 29 30 30 disabled = pythonOlder "3.8"; ··· 33 33 owner = "thegeeklab"; 34 34 repo = pname; 35 35 rev = "refs/tags/v${version}"; 36 - hash = "sha256-5TV9cTMTx8R6jf9HypieinCyNgHC4LSHTRQd9RXApG4="; 36 + hash = "sha256-icJn8lk7gAhqTRu3rAroWgtNwOdbimE4y+CHLiDvb9k="; 37 37 }; 38 38 39 39 postPatch = ''
+2 -2
pkgs/development/python-modules/dissect-cim/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-cim"; 14 - version = "3.4"; 14 + version = "3.5"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.cim"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-RlkTsAvX+9c69JBy+DZbcCfAvcCnWDisgdQQMBkphtg="; 23 + hash = "sha256-VRHnDLyHZEzeEFK+2MNQibekIlb+tsBEjUbT5tI/tIs="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-clfs/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "dissect-clfs"; 13 - version = "1.3"; 13 + version = "1.4"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "fox-it"; 20 20 repo = "dissect.clfs"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-QzEcJvujkNVUXtqu7yY7sJ/U55jzGBbUHxOVDxg4vac="; 22 + hash = "sha256-/QZuet54ws0IsjHKlv2a3hqoXhY5VaQQ0jU81J46Cyg="; 23 23 }; 24 24 25 25 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-cstruct/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "dissect-cstruct"; 12 - version = "3.5"; 12 + version = "3.6"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "fox-it"; 19 19 repo = "dissect.cstruct"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-tEWqw3ySF1ebOMztZwAlkTiY0mFCzTM58wD0XDfljFA="; 21 + hash = "sha256-f6cE1x7TsjJsdACLZjsbyfnTDPXcpXqs0qBo4l+fKS4="; 22 22 }; 23 23 24 24 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-esedb/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-esedb"; 14 - version = "3.5"; 14 + version = "3.6"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.esedb"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-wTzr9b95jhPbZVWM/C9T1OSBLK39sCIjbsNK/6Z83JE="; 23 + hash = "sha256-RBU+aQbqPfF7kjt5Nc3+FnrmkTZgGyUv1HFTFP4ZgZ4="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-etl/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-etl"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.etl"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-rEYWTMBzMyaADqT1Pp5z1J2Uf/t/GeX/FAnZVnaycYs="; 23 + hash = "sha256-RNm6je3WW6ig+JCU4AlVYpAJZXq/l8U7Pbf/AGeAmXA="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-eventlog/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-eventlog"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.eventlog"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-PbU9Rd0D+xdleTIMAV+esw1WynWU4++8KeXlHS9yiJs="; 23 + hash = "sha256-dU34eEUwRGHm/S0w6rnXJmootv1trkhKlXjWcfCFB3Q="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-evidence/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-evidence"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.evidence"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-R4ua7JeT09GkoBwM2YGf2T0PJXhldUpqAS3xsB9L79c="; 23 + hash = "sha256-XGS0PevalwaQX5OF/KcDhNSJMPzUOiLO5nwp/K3HHJ8="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-executable/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "dissect-executable"; 13 - version = "1.1"; 13 + version = "1.2"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "fox-it"; 20 20 repo = "dissect.executable"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-c58g2L3B/3/pC+iyXphYsjhpBs0I0Q64B8+rv5k1dtg="; 22 + hash = "sha256-I/LwIGce1bebAvjVuFE0rJAuJ/65xMTIim6M0BJR6TI="; 23 23 }; 24 24 25 25 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-extfs/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-extfs"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.extfs"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-VCPNY/4SUkFpLuSs2Cxu8u5qt2sQ9VGlfdPssybxhk8="; 23 + hash = "sha256-NSDhkkxqQSrfV1uttxUjLmdXlrgfAMrs5vSWgKyjuB4="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-fat/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "dissect-fat"; 13 - version = "3.3"; 13 + version = "3.4"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "fox-it"; 20 20 repo = "dissect.fat"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-v4GjI6DdDfxO3kGZ7Z5C6mkdRj9axsT9mvlSOQyiMBw="; 22 + hash = "sha256-fnppFbdI+SfGPPcSspIQnI5wH3MerGtlEbm8pe3oSBs="; 23 23 }; 24 24 25 25 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-ffs/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-ffs"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.ffs"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-nGxojXslFVcqU+9StBOacmCyoZJJB4B4OIvql/cbcZE="; 23 + hash = "sha256-A2KyXkL5SKy/iX2G6jQ2Fyx08UKVnekPICdcLhUbm3Q="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-hypervisor/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "dissect-hypervisor"; 16 - version = "3.5"; 16 + version = "3.6"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 22 22 owner = "fox-it"; 23 23 repo = "dissect.hypervisor"; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-dWaU3v2QcoqVIygeufy0ZYVliBE1tijV3qEsvCOIarM="; 25 + hash = "sha256-6oPLl18U0TtVCkLsNN8Q4hBLArfXWWRkZI4VrFKJd9Q="; 26 26 }; 27 27 28 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-ntfs/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-ntfs"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.ntfs"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-xhtAN0QaLLbQk/aAd9PlEkyW39w33iPaQtGzbouI6hc="; 23 + hash = "sha256-n6FPdsObzHLhhkfyxTiCDR4PpIQqRJU+QpAYtxk1Snc="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-ole/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "dissect-ole"; 13 - version = "3.3"; 13 + version = "3.4"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "fox-it"; 20 20 repo = "dissect.ole"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-m2+AcKp8rH+VQIdT85oKoA8QoyNQOmrZ2DvBELZnEqM="; 22 + hash = "sha256-bzm9NynNUxXefWBxPIqPcRD5E52IF4on6JMtJOrvvyk="; 23 23 }; 24 24 25 25 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-regf/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-regf"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.regf"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-3QJ1N9LukvEa74rndN/Sj6Vq10YJVBsOGdlMzR9TrKA="; 23 + hash = "sha256-nF9vJACNPA5QQy+nWjkkAoVAVdrlzAgKq//ldWpVtlE="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-shellitem/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-shellitem"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.shellitem"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-flTv2Y+UwMTQnvqRS/pZRPkTsIjvCAp7B4rKAQPOJL4="; 23 + hash = "sha256-BL1eTxL82hjsGBRK5mBNxygEzQvjN8P6/tu6KOkHf9s="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-sql/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-sql"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.sql"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-sIXFEckHFr9H4oGFw8uuC+c54PR8ZbQxJKb5x5EixxQ="; 23 + hash = "sha256-JrdYCqyds6opgRz2Jxu70MewN7uR+GoN6GF0HZgB1BI="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-squashfs/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "dissect-squashfs"; 16 - version = "1.0"; 16 + version = "1.1"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 22 22 owner = "fox-it"; 23 23 repo = "dissect.squashfs"; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-bDR6GAgl1dOhZ3fWA7E27KS6pj9AXInNxwmwNXXV3lc="; 25 + hash = "sha256-fcL0kPuJaole9EkrqU8Gouh3yquT2QaO8//R0ixMuP8="; 26 26 }; 27 27 28 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+10 -3
pkgs/development/python-modules/dissect-target/default.nix
··· 37 37 38 38 buildPythonPackage rec { 39 39 pname = "dissect-target"; 40 - version = "3.7"; 40 + version = "3.8"; 41 41 format = "pyproject"; 42 42 43 - disabled = pythonOlder "3.7"; 43 + disabled = pythonOlder "3.8"; 44 44 45 45 src = fetchFromGitHub { 46 46 owner = "fox-it"; 47 47 repo = "dissect.target"; 48 48 rev = "refs/tags/${version}"; 49 - hash = "sha256-jFQ8BxCC4PW135igfXA5EmlWYIZ0zF12suiUMiLbArA="; 49 + hash = "sha256-CPN8g6LDeS77fveFOK6gExIJq9g+5qXhwDhjw3tWuJc="; 50 50 }; 51 51 52 52 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 105 105 "test_exec_target_command" 106 106 # Issue with tar file 107 107 "test_tar_sensitive_drive_letter" 108 + # Tests compare dates and times 109 + "yum" 110 + ]; 111 + 112 + disabledTestPaths = [ 113 + # Tests are using Windows paths 114 + "tests/test_plugins_browsers.py" 108 115 ]; 109 116 110 117 meta = with lib; {
+3 -2
pkgs/development/python-modules/dissect-thumbcache/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-thumbcache"; 14 - version = "1.2"; 14 + version = "1.3"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.thumbcache"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-lTtTZQgEvgaVoNPnVeRGO/BQU/8RfQ2ktljSBflhlOw="; 23 + hash = "sha256-HO2s9AxDRmL4TNRYCdkYpWry3i4GNR0K9i5D2Pz3mVQ="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 46 46 disabledTests = [ 47 47 # Don't run Windows related tests 48 48 "windows" 49 + "test_index_type" 49 50 ]; 50 51 51 52 meta = with lib; {
+2 -2
pkgs/development/python-modules/dissect-util/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "dissect-util"; 12 - version = "3.6"; 12 + version = "3.7"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "fox-it"; 19 19 repo = "dissect.util"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-hijwu2QT9xJZ1F0wz5NO0mAVe/VA3JcPmoEYQiQRLtM="; 21 + hash = "sha256-uITIEiy4U2B0AQobvQIG/bYjelPmM8fyQduDhtC29QI="; 22 22 }; 23 23 24 24 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-vmfs/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-vmfs"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.vmfs"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-9+1geOJ+vzy6+eGibX+BUHbtzyLhq3MPBsad98ykn3I="; 23 + hash = "sha256-zLQzUSJnm5DOhKKCEWX1kVEmJK0oBGKHaWucVn1HOjg="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-volume/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-volume"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.volume"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-5O2ywPJi9M7gvcreS7DrW2qJ32MoR3Qero7jJ5gv0ow="; 23 + hash = "sha256-7ud767/UoOAbFaH1Jx4CAaQnVDzInsKIULg/LDhb/gY="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect-xfs/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dissect-xfs"; 14 - version = "3.3"; 14 + version = "3.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "fox-it"; 21 21 repo = "dissect.xfs"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-OasoZ+HGvW8PPWDBvKdrfiE3FqnXPx0xjBVFWLBYHwQ="; 23 + hash = "sha256-6EJyRqTOoYCqAihosAefBqRFniSkcw7pBLq16pyPntk="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/dissect/default.nix
··· 31 31 32 32 buildPythonPackage rec { 33 33 pname = "dissect"; 34 - version = "3.4"; 34 + version = "3.5"; 35 35 format = "pyproject"; 36 36 37 37 disabled = pythonOlder "3.7"; ··· 40 40 owner = "fox-it"; 41 41 repo = "dissect"; 42 42 rev = "refs/tags/${version}"; 43 - hash = "sha256-+t6v553lP9NEimNlp48NQ+6dpIOrgfZ1FU3LNJF44YY="; 43 + hash = "sha256-fprB+TPwtGpRcG6pkAWHsttjxTbFmmm96DguMh7f+18="; 44 44 }; 45 45 46 46 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/mypy-boto3-s3/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "mypy-boto3-s3"; 11 - version = "1.26.62"; 11 + version = "1.26.97.post2"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-qBf/8o/ualbYlkEK4KbYSP/kNUgK43rBxIGUDZYOz+U="; 18 + hash = "sha256-5fa2iL4H73Ne+U1hVzdJomV6NRJRcmsyXz3OSUcQrQg="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/algolia-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "algolia-cli"; 5 - version = "1.3.1"; 5 + version = "1.3.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "algolia"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - hash = "sha256-lO+ysaXZcwRsuEdkMyPKqrChbW27eId466Eb8Mss2IQ="; 11 + hash = "sha256-l0AIAg68HR8sD1l978OW3H7nnQbIrxtXqo2/rWTZJmY="; 12 12 }; 13 13 14 14 vendorHash = "sha256-t8SqCBuE/JmVR71MC9sHtQ6tEovO2UJo7FCDM+IBk+c=";
+3 -3
pkgs/development/tools/cloud-nuke/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cloud-nuke"; 5 - version = "0.27.0"; 5 + version = "0.27.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "gruntwork-io"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-q1/BPJkoLjNbk6OTd+VDmRX7zjDXr8vKWme7csG9xN8="; 11 + hash = "sha256-HzQKbG2Bzh3JcvRn6dUlL+n9IeDj/EhC7ir9HcmS96w="; 12 12 }; 13 13 14 - vendorHash = "sha256-MQjUajAE9ST8mwbmfwTMBOkhyqPe7pS0yQimFaBn50U="; 14 + vendorHash = "sha256-++LBd8FDZzZlwlCvwc1foBm8yx62YcJr0enJZxb9ZI0="; 15 15 16 16 ldflags = [ "-s" "-w" "-X main.VERSION=${version}" ]; 17 17
+2 -2
pkgs/development/tools/coursier/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "coursier"; 6 - version = "2.1.0-RC6"; 6 + version = "2.1.0"; 7 7 8 8 src = fetchurl { 9 9 url = "https://github.com/coursier/coursier/releases/download/v${version}/coursier"; 10 - sha256 = "0b52qp0jb2bhb649r6cca0yd1cj8wsyp0f1j3pnmir6rizjwkm5q"; 10 + sha256 = "PfvqoVwf5Cbf+Mef/v6jhMzVnfwM0+/vBQoS4RM5mK4="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/development/web/flyctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "flyctl"; 5 - version = "0.0.492"; 5 + version = "0.0.498"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "superfly"; 9 9 repo = "flyctl"; 10 10 rev = "v${version}"; 11 - hash = "sha256-15OzhjiN5pk+V72vTm/lItrQLtBleHC+V5NX3yWePXU="; 11 + hash = "sha256-8rkG5OiyK7+HaUZjbTEr6KbK9cl4AFPepav76DS7LoU="; 12 12 }; 13 13 14 - vendorHash = "sha256-w5S1LDttRHvJ4MJ+wXHREOU2/j0JVjoaoFcsfVhXaTU="; 14 + vendorHash = "sha256-ZLENEilEH+GgSyCYbptdNkz6eveCbVr9f/09szyM8pw="; 15 15 16 16 subPackages = [ "." ]; 17 17
+2 -2
pkgs/servers/komga/default.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation rec { 10 10 pname = "komga"; 11 - version = "0.164.0"; 11 + version = "0.165.0"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/gotson/${pname}/releases/download/v${version}/${pname}-${version}.jar"; 15 - sha256 = "sha256-p0pBnRn++XblmOS1WdHm5VVYvg0fPz/B3QCepOvBfYk="; 15 + sha256 = "sha256-J8dpw7GzLJnLiiFSFVCoqZFQ6mI2z0zBZHdbmxMgmf8="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+3 -5
pkgs/servers/nginx-sso/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "nginx-sso"; 9 - version = "0.25.0"; 9 + version = "0.26.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Luzifer"; 13 13 repo = "nginx-sso"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-uYl6J2auAkboPpT6lRZzI70bCU9LvxfCdCyHfLNIsHw="; 15 + hash = "sha256-vtbomeezW8PMv2lCR6PJqYw+PCFJ3M1SAQPGaIWouXY="; 16 16 }; 17 17 18 - vendorSha256 = null; 19 - 20 - patches = [ ./rune.patch ]; 18 + vendorHash = "sha256-THTQhUgIfDDTgnR4qZxWFoGQzvqr3xrrz5ZxnV9ipBM="; 21 19 22 20 postInstall = '' 23 21 mkdir -p $out/share
-13
pkgs/servers/nginx-sso/rune.patch
··· 1 - diff --git i/main.go w/main.go 2 - index bf80f3d..632f7d6 100644 3 - --- i/main.go 4 - +++ w/main.go 5 - @@ -174,7 +174,7 @@ func handleAuthRequest(res http.ResponseWriter, r *http.Request) { 6 - case plugins.ErrNoValidUserFound: 7 - // No valid user found, check whether special anonymous "user" has access 8 - // Username is set to 0x0 character to prevent accidental whitelist-match 9 - - if mainCfg.ACL.HasAccess(string(0x0), nil, r) { 10 - + if mainCfg.ACL.HasAccess(string(rune(0x0)), nil, r) { 11 - mainCfg.AuditLog.Log(auditEventValidate, r, map[string]string{"result": "anonymous access granted"}) // #nosec G104 - This is only logging 12 - res.WriteHeader(http.StatusOK) 13 - return
+10 -4
pkgs/servers/nosql/mongodb/6.0.nix
··· 1 - { stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }: 1 + { stdenv, callPackage, lib, fetchpatch, sasl, boost, Security, CoreFoundation, cctools }: 2 2 3 3 let 4 4 buildMongoDB = callPackage ./mongodb.nix { ··· 6 6 }; 7 7 in 8 8 buildMongoDB { 9 - version = "6.0.1"; 10 - sha256 = "sha256-3LdyPHj2t7JskCJh6flCYl6qjfAbRXHsi+19L+0O2Zs="; 11 - patches = [ ]; 9 + version = "6.0.5"; 10 + sha256 = "sha256-iUY5nbyaoMknBlWy3ItkgY87lHNVbZ1N9ricbzMpWX4="; 11 + patches = [ 12 + (fetchpatch { 13 + name = "mongodb-6.1.0-rc-more-specific-cache-alignment-types.patch"; 14 + url = "https://github.com/mongodb/mongo/commit/5435f9585f857f6145beaf6d31daf336453ba86f.patch"; 15 + sha256 = "sha256-gWlE2b/NyGe2243iNCXzjcERIY8/4ZWI4Gjh5SF0tYA="; 16 + }) 17 + ]; 12 18 }
+1
pkgs/servers/nosql/mongodb/mongodb.nix
··· 186 186 187 187 maintainers = with maintainers; [ bluescreen303 offline cstrahan ]; 188 188 platforms = subtractLists systems.doubles.i686 systems.doubles.unix; 189 + broken = (versionOlder version "6.0" && stdenv.system == "aarch64-darwin"); 189 190 }; 190 191 }
+7 -2
pkgs/servers/nosql/mongodb/v4_2.nix
··· 9 9 inherit cctools; 10 10 }; 11 11 in buildMongoDB { 12 - version = "4.2.19"; 13 - sha256 = "sha256-fngTHd+fSdHqiqQYOYS7o6P5eHybeZy3iNKkGzFmjTw="; 12 + version = "4.2.24"; 13 + sha256 = "sha256-O6nR4wfmupuc/Vjm72Vt8WFmbGm9GHR3p1GlEtgEJpg="; 14 14 patches = [ 15 15 ./forget-build-dependencies-4-2.patch 16 16 (fetchpatch { 17 17 name = "mongodb-4.4.1-gcc11.patch"; 18 18 url = "https://raw.githubusercontent.com/gentoo/gentoo/7168257cad6ea7c4856b01c5703d0ed5b764367c/dev-db/mongodb/files/mongodb-4.4.1-gcc11.patch"; 19 19 sha256 = "sha256-RvfCP462RG+ZVjcb23DgCuxCdfPl2/UgH8N7FgCghGI="; 20 + }) 21 + (fetchpatch { 22 + name = "mongodb-4.4.15-adjust-the-cache-alignment-assumptions.patch"; 23 + url = "https://aur.archlinux.org/cgit/aur.git/plain/mongodb-4.4.15-adjust-cache-alignment-assumptions.patch.arm64?h=mongodb44"; 24 + sha256 = "Ah4zdSFgXUJ/HSN8VRLJqDpNy3CjMCBnRqlpALXzx+g="; 20 25 }) 21 26 ] ++ lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view-4-2.patch ]; 22 27 }
+2 -2
pkgs/servers/web-apps/wiki-js/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wiki-js"; 5 - version = "2.5.297"; 5 + version = "2.5.298"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/Requarks/wiki/releases/download/v${version}/${pname}.tar.gz"; 9 - sha256 = "sha256-58TAlioeBjNYRk2Ku6kFxHLffcDq3HwlqklqBkEIhLM="; 9 + sha256 = "sha256-O7KQ134zh9ullYyQZimmxfdRwXeHkD8aAhy/pRzIjxo="; 10 10 }; 11 11 12 12 sourceRoot = ".";
+2 -2
pkgs/tools/backup/tsm-client/default.nix
··· 105 105 106 106 unwrapped = stdenv.mkDerivation rec { 107 107 name = "tsm-client-${version}-unwrapped"; 108 - version = "8.1.17.0"; 108 + version = "8.1.17.2"; 109 109 src = fetchurl { 110 110 url = mkSrcUrl version; 111 - hash = "sha512-MP8BjnESFoEzl6jdhtuwX9PolDF7o4QL7i1NeDV0ltIJMUOqSeAULpTJ1bbErJokJSbrj41kDwMVI+ZuAUb1eA=="; 111 + hash = "sha512-DZCXb3fZO2VYJJJUdjGt9TSdrYNhf8w7QMgEERzX8xb74jjA+UPNI2dbNCeja/vrgRYLYipWZPyjTQJmkxlM/g=="; 112 112 }; 113 113 inherit meta passthru; 114 114
+5 -1
pkgs/tools/graphics/aaphoto/default.nix
··· 5 5 , libpng 6 6 , libjpeg 7 7 , zlib 8 + , llvmPackages 8 9 }: 9 10 10 11 stdenv.mkDerivation rec { ··· 15 16 url = "http://log69.com/downloads/aaphoto_sources_${version}.tar.gz"; 16 17 sha256 = "sha256-06koJM7jNVFqVgqg6BmOZ74foqk6yjUIFnwULzPZ4go="; 17 18 }; 19 + 20 + nativeBuildInputs = lib.optionals stdenv.cc.isClang [ 21 + llvmPackages.openmp 22 + ]; 18 23 19 24 buildInputs = [ 20 25 jasper ··· 43 48 license = licenses.gpl3Plus; 44 49 maintainers = with maintainers; [ AndersonTorres ]; 45 50 platforms = platforms.unix; 46 - broken = stdenv.isDarwin; # aaphoto.c:237:10: fatal error: 'omp.h' file not found 47 51 }; 48 52 }
+2 -2
pkgs/tools/text/mark/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "mark"; 5 - version = "8.8"; 5 + version = "8.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kovetskiy"; 9 9 repo = "mark"; 10 10 rev = version; 11 - sha256 = "sha256-GPL+1NXoy3Wk088XbBrVjZR7rTG8OsAMWJnprTbmnco="; 11 + sha256 = "sha256-mtATdRUNTBXy/r7VoxHi1SNTv8fGz7svil6dOkqq5Bk="; 12 12 }; 13 13 14 14 vendorHash = "sha256-V14i+8h0HxxHVDNfgaHUxdzEnB+mKL5iGjBwMjPDZ9s=";