nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
fc5f95bd 51e600a3

+106 -79
+2 -2
pkgs/applications/audio/dragonfly-reverb/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "dragonfly-reverb"; 5 - version = "3.2.6"; 5 + version = "3.2.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "michaelwillis"; 9 9 repo = "dragonfly-reverb"; 10 10 rev = version; 11 - sha256 = "sha256-hTapy/wXt1rRZVdkx2RDW8LS/DcY30p+WaAWgemGqVo="; 11 + sha256 = "sha256-DJ6J5PuRFDin6PtkNYjIRI1gEVQkKmnZLhnj7L4JtPM="; 12 12 fetchSubmodules = true; 13 13 }; 14 14
+2 -2
pkgs/applications/audio/helio-workstation/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "helio-workstation"; 8 - version = "3.9"; 8 + version = "3.10"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "helio-fm"; 12 12 repo = pname; 13 13 rev = version; 14 14 fetchSubmodules = true; 15 - sha256 = "sha256-AtgKgw+F5lc0Ma3zOxmk3iaZQp2KZb2FP5F8QvvYTT4="; 15 + sha256 = "sha256-TqwebaFZXUto+azVJQlggqAc7WKDxAaXxyXcG8x5S/w="; 16 16 }; 17 17 18 18 buildInputs = [
+2 -2
pkgs/applications/misc/hugo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "hugo"; 5 - version = "0.104.1"; 5 + version = "0.104.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "gohugoio"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-cR+S84ROSAnK1FXLX+f3BXKcxp8W/noA9cg0XvEXbaU="; 11 + sha256 = "sha256-7GB2bLf6J253oFkTLg8iblE6c2wFYS3WCUqTDsc61/8="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-K7rQSs4PqFGV4gZ6UevS7S0w0OQykAkHntklKz5vPrU=";
+2 -2
pkgs/applications/misc/qcad/default.nix
··· 18 18 19 19 mkDerivation rec { 20 20 pname = "qcad"; 21 - version = "3.27.6.7"; 21 + version = "3.27.6.11"; 22 22 23 23 src = fetchFromGitHub { 24 24 name = "qcad-${version}-src"; 25 25 owner = "qcad"; 26 26 repo = "qcad"; 27 27 rev = "v${version}"; 28 - sha256 = "sha256-PGGm7XhjGngj2oD8NNh8aQOKRgcdx9qiQu/4ZYBceG8="; 28 + sha256 = "sha256-FfbHedJgzZdUpamLL2Wz2P8glaC/IVYCGZQk9EEc83k="; 29 29 }; 30 30 31 31 patches = [
+2 -2
pkgs/applications/networking/cluster/argo-rollouts/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "argo-rollouts"; 5 - version = "1.3.0"; 5 + version = "1.3.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "argoproj"; 9 9 repo = "argo-rollouts"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-CsH/qYhi4sw4u7MZMSdNT5fAae5APwrvJQbubDCLbLY="; 11 + sha256 = "sha256-qgOhiJdaxauHIoPsMfcdxwrKiv8QD/tFksCbk13Zpiw="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-gm96rQdQJGsIcxVgEI7sI7BvEETU/+HsQ6PnDjFXb/0=";
+2 -2
pkgs/applications/networking/cluster/werf/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "werf"; 13 - version = "1.2.175"; 13 + version = "1.2.176"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "werf"; 17 17 repo = "werf"; 18 18 rev = "v${version}"; 19 - hash = "sha256-p60+IBy9f31BfmKdYlaHPO93mpIpWeOrDa6vFYrL1eQ="; 19 + hash = "sha256-E6xRnEIo6ks8E9bWjo8d+mDhYe+nsKIFdUEGS6tbgXM="; 20 20 }; 21 21 22 22 vendorHash = "sha256-NHRPl38/R7yS8Hht118mBc+OBPwfYiHOaGIwryNK8Mo=";
+3 -3
pkgs/applications/networking/feedreaders/newsboat/default.nix
··· 3 3 4 4 rustPlatform.buildRustPackage rec { 5 5 pname = "newsboat"; 6 - version = "2.28"; 6 + version = "2.29"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "newsboat"; 10 10 repo = "newsboat"; 11 11 rev = "r${version}"; 12 - hash = "sha256-MHbGCGtFPXG+82Qveoiv7f8qqZOxThEYb9y9Kv3pnFc="; 12 + hash = "sha256-/R+ahUOgQR71kTZIpsic1gEYxJzbnY8x6AxtkzYTCDo="; 13 13 }; 14 14 15 - cargoHash = "sha256-9YcVKZn51fhkE6bZmaNu7PXsSG8j0M4piBnTWtX8Kcg="; 15 + cargoHash = "sha256-uHhP5XurJHM31fJqsqW9tumPzzMMOEeEWAAsllazcME="; 16 16 17 17 # TODO: Check if that's still needed 18 18 postPatch = lib.optionalString stdenv.isDarwin ''
+2 -2
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "signal-desktop"; 12 - version = "5.61.0"; # Please backport all updates to the stable channel. 12 + version = "5.61.1"; # Please backport all updates to the stable channel. 13 13 # All releases have a limited lifetime and "expire" 90 days after the release. 14 14 # When releases "expire" the application becomes unusable until an update is 15 15 # applied. The expiration date for the current release can be extracted with: ··· 19 19 20 20 src = fetchurl { 21 21 url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 22 - sha256 = "sha256-1EPOuvul/Dh/gFwgCy7Wme6GYIP1Mi3TofTrIF3kU3g="; 22 + sha256 = "sha256-iEWJ0/rzQMZaZKwume+akMgRg71tVwhlovIGC129B/8="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -7
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 32 32 , jemalloc 33 33 , rnnoise 34 34 , abseil-cpp 35 - , kcoreaddons 36 35 # Transitive dependencies: 37 36 , util-linuxMinimal 38 37 , pcre ··· 73 74 in 74 75 env.mkDerivation rec { 75 76 pname = "telegram-desktop"; 76 - version = "4.2.0"; 77 + version = "4.2.4"; 77 78 # Note: Update via pkgs/applications/networking/instant-messengers/telegram/tdesktop/update.py 78 79 79 80 # Telegram-Desktop with submodules ··· 82 83 repo = "tdesktop"; 83 84 rev = "v${version}"; 84 85 fetchSubmodules = true; 85 - sha256 = "1wpqn79pbarz48kmrh6gciw4a9y5hiki5qczlvj8smvx9is6yrf8"; 86 + sha256 = "sha256-X2ZbjlL3YbPdXSgS+wqZL3FUW2xQ0DhqiOO5MR1QyLY="; 86 87 }; 87 88 88 89 postPatch = '' 89 - substituteInPlace Telegram/CMakeLists.txt \ 90 - --replace '"''${TDESKTOP_LAUNCHER_BASENAME}.appdata.xml"' '"''${TDESKTOP_LAUNCHER_BASENAME}.metainfo.xml"' 91 - 92 90 substituteInPlace Telegram/ThirdParty/libtgvoip/os/linux/AudioInputALSA.cpp \ 93 91 --replace '"libasound.so.2"' '"${alsa-lib}/lib/libasound.so.2"' 94 92 substituteInPlace Telegram/ThirdParty/libtgvoip/os/linux/AudioOutputALSA.cpp \ ··· 135 139 jemalloc 136 140 rnnoise 137 141 tg_owt 138 - kcoreaddons 139 142 # Transitive dependencies: 140 143 util-linuxMinimal # Required for libmount thus not nativeBuildInputs. 141 144 pcre
+7 -2
pkgs/applications/networking/novnc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 1 + { lib, python3, stdenv, substituteAll, fetchFromGitHub }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "novnc"; ··· 11 11 sha256 = "sha256-Z+bks7kcwj+Z3uf/t0u25DnGOM60QhSH6uuoIi59jqU="; 12 12 }; 13 13 14 - patches = [ ./fix-paths.patch ]; 14 + patches = with python3.pkgs; [ 15 + (substituteAll { 16 + src = ./websockify.patch; 17 + inherit websockify; 18 + }) 19 + ] ++ [ ./fix-paths.patch ]; 15 20 16 21 postPatch = '' 17 22 substituteAllInPlace utils/novnc_proxy
+13
pkgs/applications/networking/novnc/websockify.patch
··· 1 + diff --git a/utils/novnc_proxy b/utils/novnc_proxy 2 + index 0365c1e..7eba2db 100755 3 + --- a/utils/novnc_proxy 4 + +++ b/utils/novnc_proxy 5 + @@ -167,7 +167,7 @@ if [[ -d ${HERE}/websockify ]]; then 6 + 7 + echo "Using local websockify at $WEBSOCKIFY" 8 + else 9 + - WEBSOCKIFY_FROMSYSTEM=$(which websockify 2>/dev/null) 10 + + WEBSOCKIFY_FROMSYSTEM="@websockify@/bin/websockify" 11 + WEBSOCKIFY_FROMSNAP=${HERE}/../usr/bin/python2-websockify 12 + [ -f $WEBSOCKIFY_FROMSYSTEM ] && WEBSOCKIFY=$WEBSOCKIFY_FROMSYSTEM 13 + [ -f $WEBSOCKIFY_FROMSNAP ] && WEBSOCKIFY=$WEBSOCKIFY_FROMSNAP
+1
pkgs/applications/networking/p2p/frostwire/default.nix
··· 94 94 license = licenses.gpl2; 95 95 maintainers = with maintainers; [ gavin ]; 96 96 platforms = [ "x86_64-darwin" "x86_64-linux" "i686-linux" ]; 97 + broken = true; # at 2022-09-30, errors with changing hash. 97 98 }; 98 99 }
+11 -3
pkgs/applications/version-management/git-and-tools/git-branchless/default.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "git-branchless"; 18 - version = "0.4.0"; 18 + version = "0.5.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "arxanas"; 22 22 repo = "git-branchless"; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-WFrN5TRFr9xHBUawTfvri0qlTiWCfAeC5SL+T6mwlU0="; 24 + sha256 = "sha256-jAc17poNTld3eptN1Vd1MOKS5iloMWkq3oZgpWBkGTY="; 25 25 }; 26 26 27 - cargoSha256 = "sha256-AGW1jUKPc5iiuDlgIDHG1sOn1flAB3UdxJJNKPH5+f8="; 27 + cargoPatches = [ 28 + (fetchpatch { 29 + name = "build-run-cargo-update"; 30 + url = "https://github.com/arxanas/git-branchless/commit/0ac3f325520f79d15368aa9d14893ebc17313ab6.patch"; 31 + sha256 = "sha256-S1kazUzvz3FzFpphSRhWiv/l2b/+zC9HtAl7ndq5aJA="; 32 + }) 33 + ]; 34 + 35 + cargoSha256 = "sha256-Lo/Q6OSIzWrRNiTGsOWRX+6FEcj4fk1kn7V9tw67UVo="; 28 36 29 37 nativeBuildInputs = [ pkg-config ]; 30 38
+2 -2
pkgs/development/libraries/armadillo/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "armadillo"; 5 - version = "11.2.4"; 5 + version = "11.4.0"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; 9 - sha256 = "sha256-3EyRlUqxFJC/ZNLfzFSoAvFDk8dWqNVFrBVe7v+n/ZM="; 9 + sha256 = "sha256-AWUxFSwCcppgKqbxb0ujsEdXQNXBvSjTTt1yZPR2Rhw="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/python-modules/casa-formats-io/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "casa-formats-io"; 12 - version = "0.1"; 12 + version = "0.2"; 13 13 format = "pyproject"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - sha256 = "16rypj65wdfxxrilxfhbk563lxv86if4vvs9zfq3f8bkzdr8xl9s"; 17 + sha256 = "sha256-omDPTR/RRHosOF+ejZzuGUBO1LAN/SefNQsvnXxezOQ="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/gaphas/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "gaphas"; 15 - version = "3.7.0"; 15 + version = "3.8.0"; 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 format = "pyproject"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - sha256 = "sha256-iT8Gez8PgIrdAS9Kd83aY1yOQFL45KB+SES/50wTFEI="; 22 + sha256 = "sha256-szES3oLJayboCAMCGKtQqclOcbpYtEn3rg95OPtOZpU="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+3 -3
pkgs/development/tools/benthos/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "benthos"; 5 - version = "4.3.0"; 5 + version = "4.7.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "benthosdev"; 9 9 repo = "benthos"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-tRB9eTeyEyPkiR/sph76CMbPjJUNoDzfYuHmtFAzY7E="; 11 + sha256 = "sha256-aj4MkVj1+9IcyiPWOilrk/x5Rwtoq9wwP4oCtgeb+vU="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-nnaBQ7ADdAdo/+RQzXJHBBpXgTmxny0O/ij+eWsS5YM="; 14 + vendorSha256 = "sha256-aQ3z8KBTLHNs5y+8I02AIZc7p5fr10GA99YdizwSJko="; 15 15 16 16 doCheck = false; 17 17
+3 -3
pkgs/development/tools/millet/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "millet"; 5 - version = "0.3.11"; 5 + version = "0.3.12"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "azdavis"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-6xuqzeYTbBirkleyrza4y1i2m4sWhTHizq5BtAtoIHo="; 11 + sha256 = "sha256-VqcC5RWo7az1SyrdLmbModK9I5za33plXm/PJ8b7Pbk="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-DZCeEd/bg8/IlJ/3XgPc28tI8w8j/nH99Bj3HffuqtU="; 14 + cargoSha256 = "sha256-1gU1SnKqLsIbipAbczu/WvAGxKHZ2NYhAqXwMAuISa0="; 15 15 16 16 postPatch = '' 17 17 rm .cargo/config.toml
+2 -2
pkgs/development/tools/protoc-gen-validate/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "protoc-gen-validate"; 5 - version = "0.6.8"; 5 + version = "0.6.12"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "envoyproxy"; 9 9 repo = "protoc-gen-validate"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-s66HfafyiAwr4tvWiPVj7ivWE9C03KTGgI/iu0LgNGk="; 11 + sha256 = "sha256-JoOTIteE4/IFsVVXcRI1KYpRONjo3veQ6uCtxYFlz8Y="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-vFi1DT7o2fyzxO/aZHtdsU1/G/sGmamqZPeql0vQVjs=";
+11 -5
pkgs/development/tools/rq/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, rustPlatform }: 1 + { lib, rustPlatform, fetchFromGitHub }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rq"; 5 - version = "1.0.2"; 5 + version = "1.0.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dflemstr"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0km9d751jr6c5qy4af6ks7nv3xfn13iqi03wq59a1c73rnf0zinp"; 11 + sha256 = "sha256-QyYTbMXikLSe3eYJRUALQJxUJjA6VlvaLMwGrxIKfZI="; 12 12 }; 13 13 14 - cargoSha256 = "0071q08f75qrxdkbx1b9phqpbj15r79jbh391y32acifi7hr35hj"; 14 + cargoSha256 = "sha256-WAgWc9rAQBjrsaHP6s3Djpg3iYmfRVC9J9yq0T/zMqA="; 15 15 16 16 postPatch = '' 17 17 # Remove #[deny(warnings)] which is equivalent to -Werror in C. 18 18 # Prevents build failures when upgrading rustc, which may give more warnings. 19 19 substituteInPlace src/lib.rs \ 20 20 --replace "#![deny(warnings)]" "" 21 + 22 + # build script tries to get version information from git 23 + # this fixes the --version output 24 + rm build.rs 21 25 ''; 26 + 27 + VERGEN_SEMVER = version; 22 28 23 29 meta = with lib; { 24 30 description = "A tool for doing record analysis and transformation"; 25 31 homepage = "https://github.com/dflemstr/rq"; 26 32 license = with licenses; [ asl20 ]; 27 - maintainers = with maintainers; [ aristid Br1ght0ne ]; 33 + maintainers = with maintainers; [ aristid Br1ght0ne figsoda ]; 28 34 }; 29 35 }
+3 -3
pkgs/development/tools/ruff/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "ruff"; 11 - version = "0.0.48"; 11 + version = "0.0.49"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "charliermarsh"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-KTvssDMy9Gol98jRPxDwjRIPAWNKU2Dx0TKAFvsX2zE="; 17 + sha256 = "sha256-Ytjtw13tVn29rfHd5yPg3ZdAzBevHQblPkWZ+i3cX/g="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-9OX1s461S5KDfwYq0kEI55LV4FmLGLEWI69wWOmDxtI="; 20 + cargoSha256 = "sha256-nryWFPjsipweTFe9Snggv7O/xmtgO7XFDcR6VmBYHkc="; 21 21 22 22 buildInputs = lib.optionals stdenv.isDarwin [ 23 23 CoreServices
+3 -3
pkgs/development/tools/shellharden/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "shellharden"; 5 - version = "4.2.0"; 5 + version = "4.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "anordal"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "081b51h88hhyzn9vb9pcszz1wfdj73xwsyfn2ygz708kabzqpvdl"; 11 + sha256 = "sha256-yOfGMxNaaw5ub7woShDMCJNiz6FgV5IBJN87VmORLvg="; 12 12 }; 13 13 14 - cargoSha256 = "1gwlmds417szwvywvm19wv60a83inp52sf46sd05x5vahb8gv8hg"; 14 + cargoSha256 = "sha256-o3CBnxEQNmvn+h/QArIkzi9xfZzIngvwHpkMT+PItY4="; 15 15 16 16 postPatch = "patchShebangs moduletests/run"; 17 17
+3 -3
pkgs/development/tools/symfony-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "symfony-cli"; 5 - version = "5.4.13"; 6 - vendorSha256 = "sha256-/HJgMCRfSS3ln/bW7pb6x9ugece8MFHTLHARTNMHNEU="; 5 + version = "5.4.14"; 6 + vendorSha256 = "sha256-A0Dq5QoKSFDpif8x27a1O8CGZ9s5PzOycvPfvEp4qn4="; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "symfony-cli"; 10 10 repo = "symfony-cli"; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-yTCq+kx86TGjDZ9Cx4d4ni1Q8yvgXSmJP3YD1owrLN8="; 12 + sha256 = "sha256-XALXgEzVlgUbqatQMBd+blLK9Lt1rJ9+mWEvxhxneIo="; 13 13 }; 14 14 15 15 postInstall = ''
+4 -2
pkgs/servers/squid/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "squid"; 7 - version = "5.6"; 7 + version = "5.7"; 8 8 9 9 src = fetchurl { 10 10 url = "http://www.squid-cache.org/Versions/v5/${pname}-${version}.tar.xz"; 11 - sha256 = "sha256-ONJzOKNHWXzg6T0MO+bl9mtnUEF8R0yofuDWG7bRSNs="; 11 + hash = "sha256-awdTqrpMnE79Mz5nEkyuz3rWzC04WB8Z0vAyH1t+zYE="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ 16 16 perl openldap db cyrus_sasl expat libxml2 openssl 17 17 ] ++ lib.optionals stdenv.isLinux [ libcap pam systemd ]; 18 + 19 + enableParallelBuilding = true; 18 20 19 21 configureFlags = [ 20 22 "--enable-ipv6"
+3 -3
pkgs/servers/traefik/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "traefik"; 5 - version = "2.8.5"; 5 + version = "2.8.8"; 6 6 7 7 # Archive with static assets for webui 8 8 src = fetchzip { 9 9 url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 10 - sha256 = "sha256-qRnt2ZyGMwnbilaau66/SEJOSWkKyZf1L7CLWVHme5k="; 10 + sha256 = "sha256-DfCHoo6CmEzemzOQrjKj0+p1jogMUkT6wFIOXJssn1s="; 11 11 stripRoot = false; 12 12 }; 13 13 14 - vendorSha256 = "sha256-6gUnM+axlkzBwVx0OePTybPP1Fk+oqsFRED4+K9Weu4="; 14 + vendorSha256 = "sha256-kKm8yvw5KVwXm2xz/8RxXAI+y1jD9IukSZWiRYG/pHA="; 15 15 16 16 subPackages = [ "cmd/traefik" ]; 17 17
+3 -3
pkgs/tools/graphics/shotgun/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "shotgun"; 5 - version = "2.2.1"; 5 + version = "2.3.1"; 6 6 7 7 nativeBuildInputs = [ pkg-config ]; 8 8 ··· 12 12 owner = "neXromancers"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-ClQP/iNs9b4foDUVpH37YCZyjVSgweHLKnSwnpkRwZI="; 15 + sha256 = "sha256-hu8UYia2tu6I6Ii9aZ6vfpbrcDz4yeEDkljGFa5s6VY="; 16 16 }; 17 17 18 - cargoSha256 = "sha256-w5s9I7lXO8HN9zHqZQCeqBXSd7jmbsaqMZRwPLnbqNk="; 18 + cargoSha256 = "sha256-UOchXeBX+sDuLhwWQRVFCj9loJUyr4IltiAKsQoh5/c="; 19 19 20 20 meta = with lib; { 21 21 description = "Minimal X screenshot utility";
+2 -2
pkgs/tools/misc/fluent-bit/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "fluent-bit"; 5 - version = "1.9.8"; 5 + version = "1.9.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "fluent"; 9 9 repo = "fluent-bit"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-qHfEcLqCajGFXlEP6as7kvqFUcEAr74UZ9zSAL+OC/I="; 11 + sha256 = "sha256-6+4DOi61WwUstIkHzUU4eBsfeqEUxJY54RccvpXjlJY="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake flex bison ];
+3 -3
pkgs/tools/misc/infracost/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "infracost"; 5 - version = "0.10.11"; 5 + version = "0.10.12"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "infracost"; 9 9 rev = "v${version}"; 10 10 repo = "infracost"; 11 - sha256 = "sha256-ZBm93lBu6sblc/P5m1igf5K8yJ8ff5qcvECZ9o3Gn6I="; 11 + sha256 = "sha256-sobIgUiFMLZ2/vkKO2DIQfEM92eRK1PV+oKaWfwk/nE="; 12 12 }; 13 - vendorSha256 = "sha256-Hs+WWc2UJtxc2isSfef8xvKDqhWytkUWh6DEq+bbAt4="; 13 + vendorSha256 = "sha256-QowKhRakXkkmKDI0vbSjWdftz4nXnjKNpdD4gscR3dM="; 14 14 15 15 ldflags = [ "-s" "-w" "-X github.com/infracost/infracost/internal/version.Version=v${version}" ]; 16 16
+3 -3
pkgs/tools/networking/getmail6/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "getmail6"; 8 - version = "6.18.9"; 8 + version = "6.18.10"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = pname; 12 12 repo = pname; 13 - rev = "v${version}"; 14 - hash = "sha256-qzlURYdE7nv+/wxK3B6WddmhW6xiLS7em3X5O5+CBbI="; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-nRi0HUq8jEugFogerFD7Xu9fgn1njfumbwhChz2t4t8="; 15 15 }; 16 16 17 17 # needs a Docker setup
+2 -2
pkgs/tools/networking/netbird/default.nix
··· 14 14 in 15 15 buildGoModule rec { 16 16 pname = "netbird"; 17 - version = "0.9.6"; 17 + version = "0.9.7"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "netbirdio"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-VNKVl1C14iZROl3JFHY7+8EYbgZTuoz5rVOOBqkmmo0="; 23 + sha256 = "sha256-phFkMJlzNUw5IrjXcAIGSWiGuRismNDuOQFqc5jJU5s="; 24 24 }; 25 25 26 26 vendorSha256 = "sha256-VyYw8Hp2qWoRBeOFsgtxmvFN2cYzuDeYmWAwC/+vjI0=";
+1 -4
pkgs/top-level/all-packages.nix
··· 31810 31810 31811 31811 toxic = callPackage ../applications/networking/instant-messengers/toxic { }; 31812 31812 31813 - toxiproxy = callPackage ../development/tools/toxiproxy { 31814 - # pinned due to build failure or vendoring problems. When unpinning double check with: nix-build -A $name.go-modules --rebuild 31815 - buildGoModule = buildGo117Module; 31816 - }; 31813 + toxiproxy = callPackage ../development/tools/toxiproxy { }; 31817 31814 31818 31815 tqsl = callPackage ../applications/radio/tqsl { 31819 31816 openssl = openssl_1_1;