Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 4e036dd9 67fb9fa5

+103 -155
+4 -3
pkgs/applications/audio/ncspot/default.nix
··· 16 16 17 17 rustPlatform.buildRustPackage rec { 18 18 pname = "ncspot"; 19 - version = "0.13.2"; 19 + version = "0.13.3"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "hrkfdn"; 23 23 repo = "ncspot"; 24 24 rev = "v${version}"; 25 - hash = "sha256-DdJa4ax/v86OgO+IAsiFA8/u6pEGcCw+N/3MLXzz8DM="; 25 + hash = "sha256-AXe/ysNYSWC4cuzvN4fLmDyeBxpzciDo8PFjXdzFMl0="; 26 26 }; 27 27 28 - cargoHash = "sha256-HkpFboXgHbJMYJFabJ58Syy1ag+InwqkeJAw8MxAr0A="; 28 + cargoHash = "sha256-y7Vaf4jp2Zds0KsYqF0JBWsbq9IQVu6n0TMo3oGL14A="; 29 29 30 30 nativeBuildInputs = [ pkg-config ] 31 31 ++ lib.optional withClipboard python3; ··· 56 56 meta = with lib; { 57 57 description = "Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes"; 58 58 homepage = "https://github.com/hrkfdn/ncspot"; 59 + changelog = "https://github.com/hrkfdn/ncspot/releases/tag/v${version}"; 59 60 license = licenses.bsd2; 60 61 maintainers = [ maintainers.marsam ]; 61 62 };
+6 -6
pkgs/applications/audio/tauon/default.nix
··· 23 23 , withDiscordRPC ? false 24 24 }: 25 25 26 - stdenv.mkDerivation rec { 26 + stdenv.mkDerivation (finalAttrs: { 27 27 pname = "tauon"; 28 - version = "7.6.4"; 28 + version = "7.6.5"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "Taiko2k"; 32 32 repo = "TauonMusicBox"; 33 - rev = "v${version}"; 34 - hash = "sha256-xMUQ2LabxuvCdd7dsoXPN3tjkDxfXIQ8UrJcsGQ+EEU="; 33 + rev = "v${finalAttrs.version}"; 34 + hash = "sha256-+K+sX6JbVB7qCRlwlIHMHFR76GwZZrHFh6Jjn8xlMmg="; 35 35 }; 36 36 37 37 postUnpack = '' ··· 133 133 meta = with lib; { 134 134 description = "The Linux desktop music player from the future"; 135 135 homepage = "https://tauonmusicbox.rocks/"; 136 - changelog = "https://github.com/Taiko2k/TauonMusicBox/releases/tag/v${version}"; 136 + changelog = "https://github.com/Taiko2k/TauonMusicBox/releases/tag/v${finalAttrs.version}"; 137 137 license = licenses.gpl3; 138 138 maintainers = with maintainers; [ jansol ]; 139 139 platforms = platforms.linux ++ platforms.darwin; 140 140 }; 141 - } 141 + })
+2 -2
pkgs/applications/graphics/vpv/default.nix
··· 14 14 }: 15 15 stdenv.mkDerivation (finalAttrs: { 16 16 pname = "vpv"; 17 - version = "0.8.1"; 17 + version = "0.8.2"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "kidanger"; 21 21 repo = "vpv"; 22 22 rev = "v${finalAttrs.version}"; 23 - sha256 = "0cphgq1pqmwrjdmq524j5y522iaq6yhp2dpjdv0a3f9558dayxix"; 23 + sha256 = "sha256-mlBceYMfsAE7MI6J7xnkJHBJ8RInePooXH5YW9I47YM="; 24 24 }; 25 25 26 26 cargoRoot = "src/fuzzy-finder";
+3 -3
pkgs/applications/networking/cluster/eks-node-viewer/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "eks-node-viewer"; 5 - version = "0.2.1"; 5 + version = "0.4.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "awslabs"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-XRt9a//0mYKZKsMs2dlcsBt5ikC9ZBMeQ3Vas0eT8a8="; 11 + sha256 = "sha256-p0n7ocoMBgM6i7e6yX+NDIkZBcJ3dT6VNWPihCheeC0="; 12 12 }; 13 13 14 - vendorHash = "sha256-28TKZYZM2kddXAusxmjhrKFy+ATU7kZM4Ad7zvP/F3A="; 14 + vendorHash = "sha256-L1lG+b7MiJQvLqZuLdSjh5zAaApvWdi9SZSDPvObW5w="; 15 15 16 16 meta = with lib; { 17 17 description = "Tool to visualize dynamic node usage within a cluster";
+2 -2
pkgs/applications/networking/cluster/glooctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "glooctl"; 5 - version = "1.14.6"; 5 + version = "1.14.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "solo-io"; 9 9 repo = "gloo"; 10 10 rev = "v${version}"; 11 - hash = "sha256-rALTZUztLZXBlKA3y9mUe/h9diGD6kOpLcD0nOIHr0w="; 11 + hash = "sha256-nd7/B3GQzcnOn8rWQi8ZzxYa0CBFfacBFtctgpJYKLs="; 12 12 }; 13 13 14 14 subPackages = [ "projects/gloo/cli/cmd" ];
+1 -1
pkgs/development/libraries/ndi/default.nix
··· 28 28 buildInputs = [ avahi ]; 29 29 30 30 unpackPhase = '' 31 - unpackFile ${src} 31 + unpackFile $src 32 32 echo y | ./${installerName}.sh 33 33 sourceRoot="NDI SDK for Linux"; 34 34 '';
+2 -3
pkgs/development/ocaml-modules/functoria/default.nix
··· 4 4 5 5 buildDunePackage rec { 6 6 pname = "functoria"; 7 - version = "4.3.4"; 7 + version = "4.3.6"; 8 8 9 - duneVersion = "3"; 10 9 minimalOCamlVersion = "4.08"; 11 10 12 11 src = fetchurl { 13 12 url = "https://github.com/mirage/mirage/releases/download/v${version}/mirage-${version}.tbz"; 14 - hash = "sha256-ZN8La2+N19wVo/vBUfIj17JU6FSp0jX7h2nDoIpR1XY="; 13 + hash = "sha256-i/5sZHfxECoKYMdGje+U21GWxJ6dDZreVcQGtbuo4SE="; 15 14 }; 16 15 17 16 propagatedBuildInputs = [ cmdliner rresult astring fmt logs bos fpath emile uri ];
+4
pkgs/development/ocaml-modules/omd/default.nix
··· 11 11 sha256 = "sha256-YCPhZCYx8I9njrVyWCCHnte7Wj/+53fN7evCjB+F+ts="; 12 12 }; 13 13 14 + preBuild = '' 15 + substituteInPlace src/dune --replace "bytes)" ")" 16 + ''; 17 + 14 18 meta = { 15 19 description = "Extensible Markdown library and tool in OCaml"; 16 20 homepage = "https://github.com/ocaml/omd";
+6 -2
pkgs/development/ocaml-modules/qtest/default.nix
··· 4 4 pname = "qtest"; 5 5 version = "2.11.2"; 6 6 7 - duneVersion = "3"; 8 - 9 7 src = fetchFromGitHub { 10 8 owner = "vincent-hugot"; 11 9 repo = pname; 12 10 rev = "v${version}"; 13 11 sha256 = "sha256-VLY8+Nu6md0szW4RVxTFwlSQ9kyrgUqf7wQEA6GW8BE="; 14 12 }; 13 + 14 + preBuild = '' 15 + substituteInPlace src/dune \ 16 + --replace "(libraries bytes)" "" \ 17 + --replace "libraries qcheck ounit2 bytes" "libraries qcheck ounit2" 18 + ''; 15 19 16 20 propagatedBuildInputs = [ qcheck ]; 17 21
+2 -2
pkgs/development/python-modules/awkward-cpp/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "awkward-cpp"; 14 - version = "15"; 14 + version = "16"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "f6c825db2db981f852903d9574a07015c5d53ef8e4630772f18c7f167045aa0d"; 21 + hash = "sha256-yE1dWFaw4kL6g38NtggIfZWJVheb1VN36jk/E5wbm4Y="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/awkward/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "awkward"; 17 - version = "2.2.1"; 17 + version = "2.2.2"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.7"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - sha256 = "653e5b69f1c8e32d1d59445a8414d03f850d327eb933f45aad163f0778861dc2"; 24 + hash = "sha256-Lui3ZJrEkPEGc5yz1M9R8wPDedNw6Iyf4sIZCoWR11M="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/dask-awkward/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "dask-awkward"; 16 - version = "2023.4.2"; 16 + version = "2023.6.1"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "dask-contrib"; 23 23 repo = pname; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-c3NnARost/406cALQDKmeUsl2kFSQHAswAEwgreFXPc="; 25 + hash = "sha256-+3+DABzHque0Iz5boxJQ7YCU52k0eHu2YCgomMTi4+4="; 26 26 }; 27 27 28 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/elastic-apm/default.nix
··· 30 30 31 31 buildPythonPackage rec { 32 32 pname = "elastic-apm"; 33 - version = "6.16.0"; 33 + version = "6.16.1"; 34 34 format = "setuptools"; 35 35 36 36 disabled = pythonOlder "3.8"; ··· 39 39 owner = "elastic"; 40 40 repo = "apm-agent-python"; 41 41 rev = "refs/tags/v${version}"; 42 - hash = "sha256-BPk1F50aUNzROfK/r73AlMX2LIDgsn0R5HUthht/ItU="; 42 + hash = "sha256-m/PjL8pltUpv/ewE/gksISsOhEVsyeWoq6yfd5c1j6s="; 43 43 }; 44 44 45 45 propagatedBuildInputs = [
-35
pkgs/development/python-modules/image-match/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, pytest-runner, scikit-image }: 2 - 3 - buildPythonPackage { 4 - pname = "image-match"; 5 - version = "1.1.2"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "ascribe"; 9 - repo = "image-match"; 10 - rev = "1c5f3170555540bdf43ff8b8189c4e8c13a8b950"; 11 - sha256 = "0vlmpidmhkpgdzw2k03x5layhijcrjpmyfd93yv2ls77ihz00ix5"; 12 - }; 13 - 14 - buildInputs = [ pytest-runner ]; 15 - 16 - propagatedBuildInputs = [ 17 - scikit-image 18 - ]; 19 - 20 - # remove elasticsearch requirement due to version incompatibility 21 - postPatch = '' 22 - substituteInPlace setup.py --replace "'elasticsearch>=5.0.0,<6.0.0'," "" 23 - ''; 24 - 25 - # tests cannot work without elasticsearch 26 - doCheck = false; 27 - pythonImportsCheck = [ "image_match" ]; 28 - 29 - meta = with lib; { 30 - homepage = "https://github.com/ascribe/image-match"; 31 - description = "Quickly search over billions of images"; 32 - license = licenses.asl20; 33 - maintainers = with maintainers; [ cmcdragonkai ]; 34 - }; 35 - }
+2 -2
pkgs/development/python-modules/knx-frontend/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "knx-frontend"; 9 - version = "2023.5.31.141540"; 9 + version = "2023.6.9.195839"; 10 10 format = "pyproject"; 11 11 12 12 # TODO: source build, uses yarn.lock 13 13 src = fetchPypi { 14 14 pname = "knx_frontend"; 15 15 inherit version; 16 - hash = "sha256-j0p3PUYnKsyuDaN+nMrIHhxLYhNXVkZQkgsp//ZTsXE="; 16 + hash = "sha256-lShWlrnELpDamXT2OQvQTKOCOODv+iSxJ9pA5tIgxdM="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
-31
pkgs/development/python-modules/markdownsuperscript/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, markdown, 2 - pytest, pytest-runner, pytest-cov, coverage }: 3 - 4 - buildPythonPackage rec { 5 - pname = "MarkdownSuperscript"; 6 - version = "2.1.1"; 7 - 8 - src = fetchPypi { 9 - inherit pname version; 10 - sha256 = "2c255b5959c1f5dd364ae80762bd0a568a0fcc9fd4e4a3d7e7b192e88adf8900"; 11 - }; 12 - 13 - propagatedBuildInputs = [ markdown ]; 14 - 15 - postPatch = '' 16 - # remove version bounds for Markdown dependency 17 - sed 's/\["Markdown.*"\]/["Markdown"]/' -i setup.py 18 - 19 - # remove version bounds for test dependencies 20 - sed 's/=.*//' -i requirements/*.txt 21 - ''; 22 - 23 - nativeCheckInputs = [ pytest pytest-runner pytest-cov coverage ]; 24 - 25 - meta = with lib; { 26 - description = "An extension to the Python Markdown package enabling superscript text"; 27 - homepage = "https://github.com/jambonrose/markdown_superscript_extension"; 28 - license = licenses.bsd2; 29 - broken = true; # unmaintained in nixpkgs, barely maintained in pypi, added 2020-11-29 30 - }; 31 - }
+12 -8
pkgs/development/python-modules/py-multihash/default.nix
··· 1 - { base58 1 + { lib 2 + , base58 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 - , lib 5 5 , morphys 6 - , pytest-runner 7 6 , pytestCheckHook 8 7 , pythonOlder 9 8 , six ··· 13 12 buildPythonPackage rec { 14 13 pname = "py-multihash"; 15 14 version = "2.0.1"; 15 + format = "setuptools"; 16 + 16 17 disabled = pythonOlder "3.4"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "multiformats"; 20 21 repo = pname; 21 - rev = "v${version}"; 22 + rev = "refs/tags/v${version}"; 22 23 hash = "sha256-z1lmSypGCMFWJNzNgV9hx/IStyXbpd5jvrptFpewuOA="; 23 24 }; 24 25 25 - nativeBuildInputs = [ 26 - pytest-runner 27 - ]; 26 + postPatch = '' 27 + substituteInPlace setup.py \ 28 + --replace "'pytest-runner', " "" 29 + ''; 28 30 29 31 propagatedBuildInputs = [ 30 32 base58 ··· 37 39 pytestCheckHook 38 40 ]; 39 41 40 - pythonImportsCheck = [ "multihash" ]; 42 + pythonImportsCheck = [ 43 + "multihash" 44 + ]; 41 45 42 46 meta = with lib; { 43 47 description = "Self describing hashes - for future proofing";
+2 -2
pkgs/development/python-modules/pyunifiprotect/default.nix
··· 31 31 32 32 buildPythonPackage rec { 33 33 pname = "pyunifiprotect"; 34 - version = "4.10.2"; 34 + version = "4.10.3"; 35 35 format = "pyproject"; 36 36 37 37 disabled = pythonOlder "3.9"; ··· 40 40 owner = "briis"; 41 41 repo = pname; 42 42 rev = "refs/tags/v${version}"; 43 - hash = "sha256-q54TLmPVo7dz9IkTZfz2qk13TQkMIopWhxlPac0IBGA="; 43 + hash = "sha256-QCQMCvPRJDNcqOIQ51Pbt+x+05ySlXk2PYio4JKFEuI="; 44 44 }; 45 45 46 46 postPatch = ''
+2 -2
pkgs/development/python-modules/trove-classifiers/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "trove-classifiers"; 11 - version = "2023.4.22"; 11 + version = "2023.5.24"; 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-ZejLOSnjeIFB25Cgd2t2/K++tUik++au5L/ZZW6JmTk="; 18 + hash = "sha256-/VoVRig76UH0dUChNb3q6PsmE4CmogTZwYAS8qGwzq4="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+9 -8
pkgs/os-specific/linux/dbus-broker/default.nix
··· 11 11 }: 12 12 13 13 let 14 + 14 15 dep = { pname, version, hash, rev ? "v${version}", buildInputs ? [ ] }: 15 16 stdenv.mkDerivation { 16 17 inherit pname version; ··· 30 31 c-dvar = dep { pname = "c-dvar"; version = "1.0.0"; hash = "sha256-P7y7gUHXQn2eyS6IcV7m7yGy4VGtQ2orgBkS7Y729ZY="; buildInputs = [ c-stdaux c-utf8 ]; }; 31 32 c-ini = dep { pname = "c-ini"; version = "1.0.0"; hash = "sha256-VKxoGexMcquakMmiH5IJt0382TjkV1FLncTSyEqf4X0="; buildInputs = [ c-list c-rbtree c-stdaux c-utf8 ]; }; 32 33 c-list = dep { pname = "c-list"; version = "3.1.0"; hash = "sha256-fp3EAqcbFCLaT2EstLSzwP2X13pi2EFpFAullhoCtpw="; }; 33 - # TODO: Fetch c-rbtree from a tag after its next release 34 - c-rbtree = dep { pname = "c-rbtree"; version = "unstable-2022-07-07"; rev = "431a4746705223673e43940ca1ad9b5f52473a4b"; hash = "sha256-ExSPgNqhTjSwRgYfZOAyoaehOpFNHKFqPYkcCfptkrs="; buildInputs = [ c-stdaux ]; }; 34 + c-rbtree = dep { pname = "c-rbtree"; version = "3.1.0"; hash = "sha256-ozVzL6FllAn8eHbso0RZc/+PGWwEp6r/R1MR+r4Bi/4="; buildInputs = [ c-stdaux ]; }; 35 35 c-shquote = dep { pname = "c-shquote"; version = "1.0.0"; hash = "sha256-Ze1enX0VJ6Xi5e4EhWzaiHc7PnuaifrUP+JuJnauv5c="; buildInputs = [ c-stdaux ]; }; 36 - c-stdaux = dep { pname = "c-stdaux"; version = "1.2.0"; hash = "sha256-/D+IFdqn1XHDfdOsDnLMO5IHQ5B4P4ELyMpRcPBg/4s="; }; 36 + c-stdaux = dep { pname = "c-stdaux"; version = "1.4.0"; hash = "sha256-gEqXVBAUE0dHD03ina9QbEP26NU12cHKRpuD7GoPmDs="; }; 37 37 c-utf8 = dep { pname = "c-utf8"; version = "1.0.0"; hash = "sha256-QEnjmfQ6kxJdsHfyRgXAlP+oGrKLYQ0m9r+D2L+pizI="; buildInputs = [ c-stdaux ]; }; 38 38 39 39 in 40 - stdenv.mkDerivation rec { 40 + 41 + stdenv.mkDerivation ( finalAttrs: { 41 42 pname = "dbus-broker"; 42 - version = "32"; 43 + version = "33"; 43 44 44 45 src = fetchFromGitHub { 45 46 owner = "bus1"; 46 47 repo = "dbus-broker"; 47 - rev = "v${version}"; 48 - hash = "sha256-PVdRyg/t6D3HjSHeap5L8AiEm39iSO5qXohLw2UAUYY="; 48 + rev = "v${finalAttrs.version}"; 49 + hash = "sha256-c5kEUB2k9CCuno9d4QOUUp1wbQfsvraGDLN6Yaa7T2w="; 49 50 }; 50 51 51 52 patches = [ ./paths.patch ]; ··· 92 93 maintainers = with maintainers; [ peterhoeg ]; 93 94 platforms = platforms.linux; 94 95 }; 95 - } 96 + } )
+14 -14
pkgs/servers/adguardhome/bins.nix
··· 1 1 { fetchurl, fetchzip }: 2 2 { 3 3 x86_64-darwin = fetchzip { 4 - sha256 = "sha256-ygf5D8s1Yv9J1mVDAZrW9Q/4scQopQ547TfHG+fFwoU="; 5 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.29/AdGuardHome_darwin_amd64.zip"; 4 + sha256 = "sha256-W2XSIXrRuNsFGEdiGXD/7aUEShSwYhGp1yvdTXDg7Xc="; 5 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.31/AdGuardHome_darwin_amd64.zip"; 6 6 }; 7 7 aarch64-darwin = fetchzip { 8 - sha256 = "sha256-s112LwCusgRcTaGmKWcRlUA2XnbdxJ7lVkWzG3QIUqQ="; 9 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.29/AdGuardHome_darwin_arm64.zip"; 8 + sha256 = "sha256-hqjuITqHNNZCDX+9ox8WLxrSoXeFZdaaSd1/RXTm2fM="; 9 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.31/AdGuardHome_darwin_arm64.zip"; 10 10 }; 11 11 i686-linux = fetchurl { 12 - sha256 = "sha256-mBqxPT/qaER4nI1+pmmpUSTJuCb9eax9DMRIY+J92Lk="; 13 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.29/AdGuardHome_linux_386.tar.gz"; 12 + sha256 = "sha256-rn8q3N4VT+xjss6OWYlW9DtAy+xfaQoriY0IuMIva6Y="; 13 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.31/AdGuardHome_linux_386.tar.gz"; 14 14 }; 15 15 x86_64-linux = fetchurl { 16 - sha256 = "sha256-M4VfjRnrqYxKc9neIJndJoa8D44RRIjN5ItE4Ec6VKY="; 17 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.29/AdGuardHome_linux_amd64.tar.gz"; 16 + sha256 = "sha256-OdGccAnlo0gGQB0IWFQX9PKz03BeUjeKwKvTjYKS5kU="; 17 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.31/AdGuardHome_linux_amd64.tar.gz"; 18 18 }; 19 19 aarch64-linux = fetchurl { 20 - sha256 = "sha256-6zekpNnfss4r/Z+g/Te0O+oDpCskKu39NI8Q0e7bHOo="; 21 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.29/AdGuardHome_linux_arm64.tar.gz"; 20 + sha256 = "sha256-EKWlhwgksmQv5OXme/4VHVFSREOsI2PGmWj9ArBukPw="; 21 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.31/AdGuardHome_linux_arm64.tar.gz"; 22 22 }; 23 23 armv6l-linux = fetchurl { 24 - sha256 = "sha256-j0n3lKyaxOXX7YHcpYlC1dpCz741q1tes2kgadHzivI="; 25 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.29/AdGuardHome_linux_armv6.tar.gz"; 24 + sha256 = "sha256-eRdAyyNGTzn0oQ/cYcrZ0LAxUjih77yHx4O/1gm+YvY="; 25 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.31/AdGuardHome_linux_armv6.tar.gz"; 26 26 }; 27 27 armv7l-linux = fetchurl { 28 - sha256 = "sha256-LyD3arGmk5YWXB2FZBLPcMAukvBtlXfFPSQ/mZBJohA="; 29 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.29/AdGuardHome_linux_armv7.tar.gz"; 28 + sha256 = "sha256-p5SHPpl33Q8JGmqRBEFJD84VcueFmSXwbp3RssRsJIg="; 29 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.31/AdGuardHome_linux_armv7.tar.gz"; 30 30 }; 31 31 }
+1 -1
pkgs/servers/adguardhome/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "adguardhome"; 10 - version = "0.107.29"; 10 + version = "0.107.31"; 11 11 src = sources.${system} or (throw "Source for ${pname} is not available for ${system}"); 12 12 13 13 installPhase = ''
+2 -2
pkgs/servers/snappymail/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "snappymail"; 10 - version = "2.27.3"; 10 + version = "2.28.1"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/the-djmaze/snappymail/releases/download/v${version}/snappymail-${version}.tar.gz"; 14 - sha256 = "sha256-NSTTWAMyBl0WQg1bEAIUWlUMdnz1yn7JLc5NAENi62M="; 14 + sha256 = "sha256-et3KuILHNPUMaqgOffMh1w73h0ThUbc/lR82pFaG6rM="; 15 15 }; 16 16 17 17 sourceRoot = "snappymail";
+2 -2
pkgs/tools/admin/granted/default.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "granted"; 12 - version = "0.13.0"; 12 + version = "0.13.2"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "common-fate"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-UoU2+RBR6vBLRx5gJsVUswoEtZ8chCn+bSv+k4SCGyU="; 18 + sha256 = "sha256-4+euNW/dv8OoWxVwEonI7R7aTLeM8QfG5xQlu5+PduA="; 19 19 }; 20 20 21 21 vendorHash = "sha256-P7HeJUdVlqrTEMVXGlvcCr9ezEmqIw5AX/+xdcFQoH4=";
+5 -3
pkgs/tools/misc/clipboard-jh/default.nix
··· 4 4 , cmake 5 5 , libffi 6 6 , pkg-config 7 - , patchelf 8 7 , wayland-protocols 9 8 , wayland 10 9 , xorg 11 10 , darwin 11 + , nix-update-script 12 12 }: 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "clipboard-jh"; 16 - version = "0.7.1"; 16 + version = "0.8.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "Slackadays"; 20 20 repo = "clipboard"; 21 21 rev = version; 22 - hash = "sha256-RLb7R4BXnP7J5gX8hsE9yi6N3kezsutP1HqkmjR3yRs="; 22 + hash = "sha256-1HWWrBI96znHctoMhQyO46Jmbg1jXPcvkDdwiWwp4KE="; 23 23 }; 24 24 25 25 postPatch = '' ··· 49 49 postFixup = lib.optionalString stdenv.isLinux '' 50 50 patchelf $out/bin/cb --add-rpath $out/lib 51 51 ''; 52 + 53 + passthru.updateScript = nix-update-script { }; 52 54 53 55 meta = with lib; { 54 56 description = "Cut, copy, and paste anything, anywhere, all from the terminal";
+1
pkgs/tools/misc/coreboot-utils/default.nix
··· 23 23 enableParallelBuilding = true; 24 24 25 25 postPatch = '' 26 + substituteInPlace 3rdparty/vboot/Makefile --replace 'ar qc ' '$$AR qc ' 26 27 cd ${path} 27 28 patchShebangs . 28 29 '';
+3 -3
pkgs/tools/misc/vimv-rs/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "vimv-rs"; 5 - version = "2.0.0"; 5 + version = "3.0.0"; 6 6 7 7 src = fetchCrate { 8 8 inherit version; 9 9 crateName = "vimv"; 10 - hash = "sha256-dc1jN9phrTfLwa6Dx1liXNu49V2qjpiuHqn4KQnPYWQ="; 10 + hash = "sha256-DpdozP/xaMoRAl8YMj5BmhNedGFhVzscM/eFOcVt+Lk="; 11 11 }; 12 12 13 - cargoHash = "sha256-1Oa4R85w5FyC6rjoZe53bJIykSSkUv2X3LQvK4w+qs0="; 13 + cargoHash = "sha256-zKJ8A36/ibAiznm3bK2JSHVRItIAqQ4YFDxvjcZLn3g="; 14 14 15 15 buildInputs = lib.optionals stdenv.isDarwin [ Foundation ]; 16 16
+2 -2
pkgs/tools/networking/dnsproxy/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnsproxy"; 5 - version = "0.49.1"; 5 + version = "0.50.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "AdguardTeam"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ImswEptEUUWeHX8hz3L/AJD25xAUAvc17Zli3lYNBjc="; 11 + sha256 = "sha256-lDHfVhhc2fD8a1kTpX74RNogKC6ov1RKvzmjgvu+MNQ="; 12 12 }; 13 13 14 14 vendorHash = null;
+3 -3
pkgs/tools/security/gotrue/supabase.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "gotrue"; 10 - version = "2.69.2"; 10 + version = "2.70.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "supabase"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - hash = "sha256-Jx9TDTJkf5Bp4VWhJ2j04bqp6zXlrOBriSHLhW414h8="; 16 + hash = "sha256-1xOHf5hu0h+Ak4zALmsu1AoQMzeyWVE0l6JH77sZnfo="; 17 17 }; 18 18 19 - vendorHash = "sha256-gv6ZzteQmx8AwYv6+EbZMSVKttf2T0okQyvfrvKpozM="; 19 + vendorHash = "sha256-ZWY+l8qrtYNul2xAtg9fSmMIS7Z1TlKDTKotwf/fN/4="; 20 20 21 21 ldflags = [ 22 22 "-s"
+3 -3
pkgs/tools/text/miller/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "miller"; 5 - version = "6.7.0"; 5 + version = "6.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "johnkerl"; 9 9 repo = "miller"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-fKgw4ii/riPTklEB+Q8/sOx2dCMS/kevyvXgpyFlkVs="; 11 + sha256 = "sha256-AgKkB/c7rSgk2jS017vjaLPKdiWJ5y/1K5RM6c9RWQg="; 12 12 }; 13 13 14 - vendorHash = "sha256-uZa9H7Tj2ynwl3fFY9U+WZ0FcNuvHRQf7RCW6rebm5g="; 14 + vendorHash = "sha256-4/BB4RaCXEgtGpBJGtccEAz9diogWTA4BxVLkOOlNMw="; 15 15 16 16 subPackages = [ "cmd/mlr" ]; 17 17
+2
pkgs/top-level/python-aliases.nix
··· 145 145 ihatemoney = throw "ihatemoney was removed because it is no longer maintained downstream"; # added 2023-04-08 146 146 IMAPClient = imapclient; # added 2021-10-28 147 147 imdbpy = throw "imdbpy has been renamed to cinemagoer"; # added 2022-08-08 148 + image-match = throw "image-match has been removed because it is no longer maintained"; # added 2023-06-10 148 149 intreehook = throw "intreehooks has been removed because it is obsolete as a backend-path key was added to PEP 517"; # added 2023-04-11 149 150 ipaddress = throw "ipaddress has been removed because it is no longer required since python 2.7."; # added 2022-05-30 150 151 influxgraph = throw "influxgraph has been removed because it is no longer maintained"; # added 2022-07-10 ··· 164 165 loo-py = loopy; # added 2022-05-03 165 166 Mako = mako; # added 2023-02-19 166 167 Markups = markups; # added 2022-02-14 168 + markdownsuperscript = throw "markdownsuperscript is unmaintained, use pymdown-extensions"; # added 2023-06-10 167 169 MDP = mdp; # added 2023-02-19 168 170 MechanicalSoup = mechanicalsoup; # added 2021-06-01 169 171 memcached = python-memcached; # added 2022-05-06
-4
pkgs/top-level/python-packages.nix
··· 4847 4847 4848 4848 image-go-nord = callPackage ../development/python-modules/image-go-nord { }; 4849 4849 4850 - image-match = callPackage ../development/python-modules/image-match { }; 4851 - 4852 4850 imagesize = callPackage ../development/python-modules/imagesize { }; 4853 4851 4854 4852 imantics = callPackage ../development/python-modules/imantics { }; ··· 6048 6046 markdown-macros = callPackage ../development/python-modules/markdown-macros { }; 6049 6047 6050 6048 markdownify = callPackage ../development/python-modules/markdownify { }; 6051 - 6052 - markdownsuperscript = callPackage ../development/python-modules/markdownsuperscript { }; 6053 6049 6054 6050 markupsafe = callPackage ../development/python-modules/markupsafe { }; 6055 6051