lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
bdbbdfe1 6508cf74

+93 -88
+3 -3
pkgs/applications/misc/usql/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "usql"; 13 - version = "0.14.7"; 13 + version = "0.14.8"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "xo"; 17 17 repo = "usql"; 18 18 rev = "v${version}"; 19 - hash = "sha256-iR+gRWSSxAudDewGBVlEQunFfodYFAuShVq2Z1rZ2k4="; 19 + hash = "sha256-s8wIk6M0vSRxbDLGmSZpRWEpCMcCMxyizzTpa/VsC1A="; 20 20 }; 21 21 22 22 buildInputs = [ unixODBC icu ]; 23 23 24 - vendorHash = "sha256-teVsEVCaSn0/t79LIig3gTw5J8j2YTRx7CoWVDGwQNI="; 24 + vendorHash = "sha256-SMizkmskNFqnyI6bZYViFqGP7GLZbWoKCbeEzRjO9VQ="; 25 25 proxyVendor = true; 26 26 27 27 # Exclude broken impala & hive driver
+8 -9
pkgs/applications/networking/localsend/default.nix
··· 2 2 3 3 let 4 4 pname = "localsend"; 5 - version = "1.9.1"; 5 + version = "1.10.0"; 6 6 7 7 srcs = { 8 8 x86_64-linux = fetchurl { 9 - url = "https://github.com/localsend/localsend/releases/download/v${version}/LocalSend-${version}.AppImage"; 10 - hash = "sha256-YAhGkJwDno8GeOepyokHv068IhY8H+L88VrKP76VHjU="; 9 + url = "https://github.com/localsend/localsend/releases/download/v${version}/LocalSend-${version}-linux-x86-64.AppImage"; 10 + hash = "sha256-5MxLQG704bVfaW2tCI6BeFmd8X9Xnn1xWPeIGKZv3P8="; 11 11 }; 12 12 x86_64-darwin = fetchurl { 13 13 url = "https://github.com/localsend/localsend/releases/download/v${version}/LocalSend-${version}.dmg"; 14 - hash = "sha256-GXyFSsTK3S8nhwixDgZTQEwRt3SOcsnbARzb/BhTk8w="; 14 + hash = "sha256-IASoA56Vzec+O62CjSM+2Q8XJJzpEK7hsI3L7R1+Izc="; 15 15 }; 16 16 }; 17 - src = srcs.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 17 + src = srcs.${stdenv.hostPlatform.system} or (throw "Unsupported system for package localsend: ${stdenv.hostPlatform.system}"); 18 18 19 19 appimageContents = appimageTools.extract { inherit pname version src; }; 20 20 ··· 29 29 install -m 444 -D ${appimageContents}/org.localsend.localsend_app.desktop \ 30 30 $out/share/applications/${pname}.desktop 31 31 substituteInPlace $out/share/applications/${pname}.desktop \ 32 - --replace 'Icon=application-vnd.appimage' 'Icon=${pname}' \ 33 - --replace 'Exec=localsend_app' 'Exec=$out/bin/localsend' 32 + --replace 'Exec=localsend_app' "Exec=$out/bin/localsend" 34 33 35 - install -m 444 -D ${appimageContents}/application-vnd.appimage.svg \ 36 - $out/share/icons/hicolor/scalable/apps/${pname}.svg 34 + install -m 444 -D ${appimageContents}/localsend.png \ 35 + $out/share/icons/hicolor/256x256/apps/localsend.png 37 36 ''; 38 37 }; 39 38
+4 -4
pkgs/applications/networking/sync/unison/default.nix
··· 13 13 , Cocoa 14 14 }: 15 15 16 - stdenv.mkDerivation rec { 16 + stdenv.mkDerivation (finalAttrs: { 17 17 pname = "unison"; 18 18 version = "2.53.2"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "bcpierce00"; 22 22 repo = "unison"; 23 - rev = "v${version}"; 23 + rev = "v${finalAttrs.version}"; 24 24 sha256 = "sha256-H+70NZZP0cUsxetFcsjWEx2kENsgMdo/41wBwwaX6zg="; 25 25 }; 26 26 ··· 54 54 dontStrip = !ocamlPackages.ocaml.nativeCompilers; 55 55 56 56 desktopItems = lib.optional enableX11 (makeDesktopItem { 57 - name = pname; 57 + name = finalAttrs.pname; 58 58 desktopName = "Unison"; 59 59 comment = "Bidirectional file synchronizer"; 60 60 genericName = "File synchronization tool"; ··· 72 72 maintainers = with maintainers; [ viric ]; 73 73 platforms = platforms.unix; 74 74 }; 75 - } 75 + })
+3 -3
pkgs/development/interpreters/wavm/default.nix
··· 4 4 , cmake 5 5 }: 6 6 7 - llvmPackages.stdenv.mkDerivation rec { 7 + llvmPackages.stdenv.mkDerivation (finalAttrs: { 8 8 pname = "wavm"; 9 9 version = "2022-05-14"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "WAVM"; 13 13 repo = "WAVM"; 14 - rev = "nightly/${version}"; 14 + rev = "nightly/${finalAttrs.version}"; 15 15 hash = "sha256-SHz+oOOkwvVZucJYFSyZc3MnOAy1VatspmZmOAXYAWA="; 16 16 }; 17 17 ··· 23 23 license = licenses.bsd3; 24 24 maintainers = with maintainers; [ ereslibre ]; 25 25 }; 26 - } 26 + })
+11 -6
pkgs/development/python-modules/dynalite-devices/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , asynctest 5 4 , pytest-asyncio 6 5 , pytestCheckHook 6 + , pythonOlder 7 7 }: 8 8 9 9 buildPythonPackage rec { 10 10 pname = "dynalite-devices"; 11 - version = "0.47"; 11 + version = "0.1.48"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 12 15 13 16 src = fetchFromGitHub { 14 17 owner = "ziv1234"; 15 18 repo = "python-dynalite-devices"; 16 - rev = "refs/tags/v${version}"; # https://github.com/ziv1234/python-dynalite-devices/issues/2 17 - hash = "sha256-kJo4e5vhgWzijLUhQd9VBVk1URpg9SXhOA60dJYashM="; 19 + rev = "refs/tags/v${version}"; 20 + hash = "sha256-i88aIsRNsToSceQdwfspJg+Y5MO5zC4O6EkyhrYR27g="; 18 21 }; 19 22 20 23 postPatch = '' ··· 22 25 ''; 23 26 24 27 nativeCheckInputs = [ 25 - asynctest 26 28 pytest-asyncio 27 29 pytestCheckHook 28 30 ]; ··· 31 33 "--asyncio-mode=auto" 32 34 ]; 33 35 34 - pythonImportsCheck = [ "dynalite_devices_lib" ]; 36 + pythonImportsCheck = [ 37 + "dynalite_devices_lib" 38 + ]; 35 39 36 40 meta = with lib; { 37 41 description = "An unofficial Dynalite DyNET interface creating devices"; 38 42 homepage = "https://github.com/ziv1234/python-dynalite-devices"; 43 + changelog = "https://github.com/ziv1234/python-dynalite-devices/releases/tag/v${version}"; 39 44 license = licenses.mit; 40 45 maintainers = with maintainers; [ dotlambda ]; 41 46 };
+21 -12
pkgs/development/python-modules/easyocr/default.nix
··· 3 3 , fetchFromGitHub 4 4 , hdf5 5 5 , numpy 6 + , onnx 6 7 , opencv3 7 8 , pillow 8 9 , pyaml 9 10 , pyclipper 10 11 , python-bidi 11 - , torch 12 + , pythonOlder 12 13 , scikit-image 13 14 , scipy 14 15 , shapely 16 + , torch 15 17 , torchvision 16 - , onnx 17 18 }: 18 19 19 20 buildPythonPackage rec { 20 21 pname = "easyocr"; 21 - version = "1.6.2"; 22 + version = "1.7.0"; 23 + format = "setuptools"; 24 + 25 + disabled = pythonOlder "3.7"; 22 26 23 27 src = fetchFromGitHub { 24 28 owner = "JaidedAI"; 25 29 repo = "EasyOCR"; 26 - rev = "v${version}"; 27 - hash = "sha256-f+JBSnFMRvVlhRRiL1rJb7a0CNjZPuh6r8r3K1meQCk="; 30 + rev = "refs/tags/v${version}"; 31 + hash = "sha256-01Exz55eTIO/xzdq/dzV+ELkU75hpxe/EbjIqLBA8h0="; 28 32 }; 29 33 30 34 postPatch = '' 31 35 substituteInPlace requirements.txt \ 32 - --replace "opencv-python-headless<=4.5.4.60" "" \ 36 + --replace "opencv-python-headless" "" \ 33 37 --replace "ninja" "" 34 38 ''; 35 39 36 40 propagatedBuildInputs = [ 37 - scikit-image 38 41 hdf5 39 - python-bidi 40 42 numpy 41 43 opencv3 42 - torchvision 43 44 pillow 44 45 pyaml 45 46 pyclipper 46 - torch 47 + python-bidi 48 + scikit-image 47 49 scipy 48 50 shapely 51 + torch 52 + torchvision 49 53 ]; 50 54 51 - nativeCheckInputs = [ onnx ]; 55 + nativeCheckInputs = [ 56 + onnx 57 + ]; 52 58 53 - pythonImportsCheck = [ "easyocr" ]; 59 + pythonImportsCheck = [ 60 + "easyocr" 61 + ]; 54 62 55 63 meta = with lib; { 56 64 description = "Ready-to-use OCR with 80+ supported languages and all popular writing scripts"; 57 65 homepage = "https://github.com/JaidedAI/EasyOCR"; 66 + changelog = "https://github.com/JaidedAI/EasyOCR/releases/tag/v${version}"; 58 67 license = licenses.asl20; 59 68 maintainers = with maintainers; [ dit7ya ]; 60 69 };
+2 -2
pkgs/development/python-modules/jira/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "jira"; 18 - version = "3.5.0"; 18 + version = "3.5.1"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "pycontribs"; 25 25 repo = pname; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-6Nx12xEEPSWZE6XORU3I5HYM7vIjbAWPu7vNrzR4W24="; 27 + hash = "sha256-n0V9FZ1agzvzqCriqls8C2IKhHKOmOAWqa8iCnXHKY4="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/limnoria/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "limnoria"; 18 - version = "2023.1.28"; 18 + version = "2023.5.27"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.6"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - hash = "sha256-yIKJAW5hb7EOUiS7G+Q4QAESfG4dbfqHScaQBKLMkeM="; 25 + hash = "sha256-HqNBXDmPU0vh1cA0swWK708MnCcAEeiRxf/yaW2Oh/U="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/manifest-ml/default.nix
··· 27 27 28 28 buildPythonPackage rec { 29 29 pname = "manifest-ml"; 30 - version = "0.1.7"; 30 + version = "0.1.8"; 31 31 format = "setuptools"; 32 32 33 33 disalbed = pythonOlder "3.8"; ··· 36 36 owner = "HazyResearch"; 37 37 repo = "manifest"; 38 38 rev = "refs/tags/v${version}"; 39 - hash = "sha256-wrslrzMAPBVAlb4ieB+DcLfWjZdlaUBnGXbzcMhlf34="; 39 + hash = "sha256-d34TIZYDB8EDEIZUH5mDzfDHzFT290DwjPLJkNneklc="; 40 40 }; 41 41 42 42 propagatedBuildInputs = [
+3 -4
pkgs/development/python-modules/nessclient/default.nix
··· 1 1 { lib 2 - , asynctest 3 2 , buildPythonPackage 4 3 , click 5 4 , fetchFromGitHub ··· 11 10 12 11 buildPythonPackage rec { 13 12 pname = "nessclient"; 14 - version = "0.10.0"; 13 + version = "1.0.0"; 15 14 format = "setuptools"; 16 15 17 16 disabled = pythonOlder "3.8"; ··· 20 19 owner = "nickw444"; 21 20 repo = pname; 22 21 rev = "refs/tags/${version}"; 23 - hash = "sha256-zjUYdSHIMCB4cCAsOOQZ9YgmFTskzlTUs5z/xPFt01Q="; 22 + hash = "sha256-UqHXKfS4zF1YhFbNKSVESmsxD0CYJKOmjMOE3blGdI8="; 24 23 }; 25 24 26 25 propagatedBuildInputs = [ ··· 29 28 ]; 30 29 31 30 nativeCheckInputs = [ 32 - asynctest 33 31 pytest-asyncio 34 32 pytestCheckHook 35 33 ]; ··· 41 39 meta = with lib; { 42 40 description = "Python implementation/abstraction of the Ness D8x/D16x Serial Interface ASCII protocol"; 43 41 homepage = "https://github.com/nickw444/nessclient"; 42 + changelog = "https://github.com/nickw444/nessclient/releases/tag/${version}"; 44 43 license = with licenses; [ mit ]; 45 44 maintainers = with maintainers; [ fab ]; 46 45 };
+2 -2
pkgs/development/python-modules/peaqevcore/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "peaqevcore"; 9 - version = "18.1.4"; 9 + version = "18.1.5"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.7"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-WjsB8NkHWejwDkZ8Aphai4BW+bbB7hSxkKwfeYCE7qk="; 16 + hash = "sha256-X8I0359Wq0jojDq0e7jJjxoRlQ8ZdUzIWPnV/1A+Mwg="; 17 17 }; 18 18 19 19 postPatch = ''
+2 -2
pkgs/development/python-modules/pyatv/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "pyatv"; 26 - version = "0.12.0"; 26 + version = "0.12.1"; 27 27 format = "setuptools"; 28 28 29 29 disabled = pythonOlder "3.7"; ··· 32 32 owner = "postlund"; 33 33 repo = pname; 34 34 rev = "refs/tags/v${version}"; 35 - hash = "sha256-t7H4ut4atc2XDnpBzV03Q/OrCHMVmZk38r/iWcLKL7Q="; 35 + hash = "sha256-HugvgJAD5R6n8XK802QR7FAaZscyzFRayg48kf3crFQ="; 36 36 }; 37 37 38 38 postPatch = ''
+2 -2
pkgs/development/python-modules/scikit-hep-testdata/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "scikit-hep-testdata"; 14 - version = "0.4.30"; 14 + version = "0.4.31"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.6"; ··· 20 20 owner = "scikit-hep"; 21 21 repo = pname; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-8nmzU+aCBlGZs0O3/7gcP9zDM9LyCb6hVqW4cNKxrU4="; 23 + hash = "sha256-/CUBRRezm84yAqnEVAC89vKIpALnvSkoSKBCmX84S0w="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/sqltrie/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "sqltrie"; 14 - version = "0.4.0"; 14 + version = "0.5.0"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 20 20 owner = "iterative"; 21 21 repo = pname; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-GNTp7ryll3V0nmaLIfr3E8krRLcLwFviZfLI0LK1Na0="; 23 + hash = "sha256-caCzFHQG0fnSmIdesk4k1W/VheY1DWxZb2W8/Xen/ZU="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/types-pyopenssl/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "types-pyopenssl"; 9 - version = "23.1.0.3"; 9 + version = "23.2.0.0"; 10 10 format = "setuptools"; 11 11 12 12 src = fetchPypi { 13 13 pname = "types-pyOpenSSL"; 14 14 inherit version; 15 - hash = "sha256-5yEQiO/z4g01mIje3ssJlPcYHVzODyY1TdR8oEhNyKY="; 15 + hash = "sha256-Q+MH6N+zp6ggihmHTKBgMF9GDFKdTqyoomaeqJSZ8kQ="; 16 16 }; 17 17 18 18 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/yfinance/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "yfinance"; 19 - version = "0.2.19b1"; 19 + version = "0.2.20"; 20 20 format = "setuptools"; 21 21 22 22 disabled = pythonOlder "3.7"; ··· 25 25 owner = "ranaroussi"; 26 26 repo = pname; 27 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-kqNit24Fdi6rk0WIJnTIata3o+pkGOGAVWZkzTlZdsQ="; 28 + hash = "sha256-uFIfhu7Sq4yQAzEfegIo0xyok1Bo8M/esg6bZCIWO18="; 29 29 }; 30 30 31 31 propagatedBuildInputs = [
+3 -3
pkgs/development/tools/jf/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "jf"; 5 - version = "0.3.3"; 5 + version = "0.6.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sayanarijit"; 9 9 repo = "jf"; 10 10 rev = "v${version}"; 11 - hash = "sha256-dZX8C/nJaKfgHsUAXR1DRZS+PWDZF+QDVpOSaOlwFp4="; 11 + hash = "sha256-A29OvGdG6PyeKMf5RarEOrfnNSmXhXri0AlECHWep6M="; 12 12 }; 13 13 14 - cargoHash = "sha256-H9UZCKy+0xL6J8f/6yCiM4X5TMOrN8UEEDwxqNR7xQY="; 14 + cargoHash = "sha256-jZmFUvg6R15oL13OYKkirsepoJwOKCeXdKMcqhPEhNU="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+2 -2
pkgs/development/tools/misc/phpunit/default.nix
··· 2 2 3 3 let 4 4 pname = "phpunit"; 5 - version = "10.1.3"; 5 + version = "10.2.1"; 6 6 in 7 7 stdenv.mkDerivation { 8 8 inherit pname version; 9 9 10 10 src = fetchurl { 11 11 url = "https://phar.phpunit.de/phpunit-${version}.phar"; 12 - hash = "sha256-b0ruyOh/DqKJYQskZSJnBsROotQuZsIBzscjKfrZ0tY="; 12 + hash = "sha256-gmxcr+WIQw/SeEvJpSFLKOuTb36qUe6WdlVWIq5tClo="; 13 13 }; 14 14 15 15 dontUnpack = true;
+3 -3
pkgs/servers/monitoring/prometheus/bird-exporter.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "bird-exporter"; 5 - version = "1.4.1"; 5 + version = "1.4.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "czerwonk"; 9 9 repo = "bird_exporter"; 10 10 rev = version; 11 - sha256 = "sha256-QCnOMiAcvn0HcppGJlf3sdllApKcjHpucvk9xxD/MqE="; 11 + sha256 = "sha256-XGHOEnAichQEir0k8wj/OSuj1zk8UsLYi9azg6lgpws="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-jBwaneVv1a8iIqnhDbQOnvaJdnXgO8P90Iv51IfGaM0="; 14 + vendorHash = "sha256-X6zrCTGZaSdQS9bwzjbSGkmNs38JBxZMtrqajQxkzK0="; 15 15 16 16 passthru.tests = { inherit (nixosTests.prometheus-exporters) bird; }; 17 17
+2 -2
pkgs/tools/misc/ksnip/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "ksnip"; 16 - version = "1.10.0"; 16 + version = "1.10.1"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "ksnip"; 20 20 repo = "ksnip"; 21 21 rev = "v${version}"; 22 - sha256 = "sha256-a5mS2mrbs0CyZ83hwwFdherq6kMS93ItQIDKu1AjnN4="; 22 + sha256 = "sha256-n7YwDXd73hyrzb6L8utZFuHh9HnjVtkU6CC4jfWPj/I="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/tools/misc/qflipper/default.nix
··· 24 24 }: 25 25 let 26 26 pname = "qFlipper"; 27 - version = "1.3.1"; 28 - sha256 = "sha256-ObrK21EjtdwQAq7ucUx7oUjwak2DgvbrcfvaXdzcgQo="; 27 + version = "1.3.2"; 28 + sha256 = "sha256-n/vvLR4p7ZmQC+FuYOvarmgydfYwxRBRktzs7CfiNQg="; 29 29 timestamp = "99999999999"; 30 30 commit = "nix-${version}"; 31 31
+3 -3
pkgs/tools/networking/ooniprobe-cli/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "ooniprobe-cli"; 8 - version = "3.17.3"; 8 + version = "3.17.5"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "ooni"; 12 12 repo = "probe-cli"; 13 13 rev = "v${version}"; 14 - hash = "sha256-kqjTYowAEfJ+um9DQQXIMLVWlEGJ9intbdTSJukSvVc="; 14 + hash = "sha256-pzNcyioicAOCAWaEo30T/Dr74sJ1kXvJN0pnuA2JJ7k="; 15 15 }; 16 16 17 - vendorHash = "sha256-kS5HWiATn2WT6E5gb0Gve83hHJ++xHmPSsgJu/5GqO4="; 17 + vendorHash = "sha256-e8FI678zr6EWKd+rOvPOyq20PJyaXszzcooDFuGWfOU="; 18 18 19 19 subPackages = [ "cmd/ooniprobe" ]; 20 20
+5 -12
pkgs/tools/security/bitwarden/default.nix
··· 4 4 , dbus 5 5 , electron_24 6 6 , fetchFromGitHub 7 - , fetchpatch 8 7 , glib 9 8 , gnome 10 9 , gtk3 ··· 27 26 buildNpmPackage' = buildNpmPackage.override { nodejs = nodejs_18; }; 28 27 electron = electron_24; 29 28 30 - version = "2023.4.0"; 29 + version = "2023.5.0"; 31 30 src = applyPatches { 32 31 src = fetchFromGitHub { 33 32 owner = "bitwarden"; 34 33 repo = "clients"; 35 34 rev = "desktop-v${version}"; 36 - sha256 = "sha256-TTKDl6Py3k+fAy/kcyiMbAAKQdhVnZTyRXV8D/VpKBE="; 35 + sha256 = "sha256-ELKpGSY4ZbgSk4vJnTiB+IOa8RQU8Ahy3A1mYsKtthU="; 37 36 }; 38 37 39 - patches = [ 40 - # Bump electron to 24 and node to 18 41 - (fetchpatch { 42 - url = "https://github.com/bitwarden/clients/pull/5205.patch"; 43 - hash = "sha256-sKSrh8RHXtxGczyZScjTeiGZgTZCQ7f45ULj/j9cp6M="; 44 - }) 45 - ]; 38 + patches = [ ]; 46 39 }; 47 40 48 41 desktop-native = rustPlatform.buildRustPackage { 49 42 pname = "bitwarden-desktop-native"; 50 43 inherit src version; 51 44 sourceRoot = "source-patched/apps/desktop/desktop_native"; 52 - cargoSha256 = "sha256-VW9DmSh9jvqFCZjH1SAYkydSGjXSVEbv4CmtoJBiw5Y="; 45 + cargoSha256 = "sha256-SeK8Nbgenof9vXI2v7tJ5oHiX60kBoR+UNOSJTRHdzk="; 53 46 54 47 nativeBuildInputs = [ 55 48 pkg-config ··· 102 95 npmBuildFlags = [ 103 96 "--workspace apps/desktop" 104 97 ]; 105 - npmDepsHash = "sha256-UXDn09qyM8GwfUiWLDhhyrGFZeKtTRmQArstw+tm5iE="; 98 + npmDepsHash = "sha256-G8DEYPjEP3L4s0pr5n2ZTj8kkT0E7Po1BKhZ2hUdJuY="; 106 99 107 100 ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 108 101
+2 -2
pkgs/tools/wayland/wayland-utils/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "wayland-utils"; 8 - version = "1.1.0"; 8 + version = "1.2.0"; 9 9 10 10 src = fetchurl { 11 11 url = "https://gitlab.freedesktop.org/wayland/wayland-utils/-/releases/${version}/downloads/wayland-utils-${version}.tar.xz"; 12 - sha256 = "sha256-nmhYYwJbT+reNtU7vI4xtD4mSYvnQ96oTHqEkSlZQQo="; 12 + sha256 = "sha256-2SeMIlVFhogYAlQHUbzEJWkmK/gM2aybD9Ev9L0JqeQ="; 13 13 }; 14 14 15 15 strictDeps = true;