Merge staging-next into staging

Changed files
+27 -21
pkgs
applications
audio
ocenaudio
radio
freedv
video
netflix
development
tools
games
trackballs
tools
admin
aws-vault
awscli2
misc
tfk8s
wayland
kanshi
+2 -2
pkgs/applications/audio/ocenaudio/default.nix
···
stdenv.mkDerivation rec {
pname = "ocenaudio";
-
version = "3.11.15";
+
version = "3.11.20";
src = fetchurl {
url = "https://www.ocenaudio.com/downloads/index.php/ocenaudio_debian9_64.deb?version=${version}";
-
sha256 = "sha256-l3Fv0gKKGYrbxpGHH6MXflK5fCrGoq3Qu+XkqFqMJJk=";
+
sha256 = "sha256-ifzth9qd2YX9WeF6QeXSWkMqRyTGBxPyTm5tkanPiFQ=";
};
nativeBuildInputs = [
+2 -2
pkgs/applications/radio/freedv/default.nix
···
stdenv.mkDerivation rec {
pname = "freedv";
-
version = "1.8.5";
+
version = "1.8.6";
src = fetchFromGitHub {
owner = "drowe67";
repo = "freedv-gui";
rev = "v${version}";
-
hash = "sha256-BkxEg4vQ943QyDo9V1hG2XimguGn8XpO9aIz5si0PKU=";
+
hash = "sha256-zzzRePBc09fK1ILoDto3EVz7IxJKePi39E18BrQedE0=";
};
postPatch = lib.optionalString stdenv.isDarwin ''
+8 -2
pkgs/applications/video/netflix/default.nix
···
, runtimeShell
, symlinkJoin
, writeScriptBin
+
+
# command line arguments which are always set e.g "--disable-gpu"
+
, commandLineArgs ? [ ]
}:
let
···
script = writeScriptBin name ''
#!${runtimeShell}
-
exec ${google-chrome}/bin/${google-chrome.meta.mainProgram} \
+
exec ${google-chrome}/bin/${google-chrome.meta.mainProgram} ${lib.escapeShellArgs commandLineArgs} \
--app=https://netflix.com \
-
--no-first-run --no-default-browser-check --no-crash-upload
+
--no-first-run \
+
--no-default-browser-check \
+
--no-crash-upload \
+
"$@"
'';
in
+2 -2
pkgs/development/tools/k6/default.nix
···
buildGoModule rec {
pname = "k6";
-
version = "0.41.0";
+
version = "0.42.0";
src = fetchFromGitHub {
owner = "grafana";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-kMWheOf6lR2Fdb77NvjQYB/PHILs6ZIfQORh72ojc8c=";
+
sha256 = "sha256-DlB1oTE5RkxSyNupZ2U+dmr7qNPq8xJU3R0pAjm5EFQ=";
};
subPackages = [ "./" ];
+2 -2
pkgs/development/tools/mold/default.nix
···
stdenv.mkDerivation rec {
pname = "mold";
-
version = "1.7.1";
+
version = "1.8.0";
src = fetchFromGitHub {
owner = "rui314";
repo = pname;
rev = "v${version}";
-
hash = "sha256-sC8rJOyQB8mDCCmfpk2lVDPTWxBj7tZxVXQw8agl7t0=";
+
hash = "sha256-VykBOXeU3I6ZSmRIlngLdoLF4V2nb5QW/f8tr9Wn9o8=";
};
nativeBuildInputs = [ cmake ninja ];
+2 -2
pkgs/games/trackballs/default.nix
···
stdenv.mkDerivation rec {
pname = "trackballs";
-
version = "1.3.3";
+
version = "1.3.4";
src = fetchFromGitHub {
owner = "trackballs";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-fCoQqGXwcpcq/gl67XXY5/wEvCM0ZZTV8LhjC+tnRuo=";
+
sha256 = "sha256-JKSiNe5mu8rRztUhduGFY6IsSMx6VyBqKcGO5EssI+8=";
};
nativeBuildInputs = [ cmake ];
+3 -3
pkgs/tools/admin/aws-vault/default.nix
···
}:
buildGoModule rec {
pname = "aws-vault";
-
version = "6.6.0";
+
version = "6.6.1";
src = fetchFromGitHub {
owner = "99designs";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-wJVbB1MPSKX8/gTX29ThPDxJJRW79+PDwhGDGODtRko=";
+
sha256 = "sha256-oItDA7PWI6EzEyG9QYb8N1Zttm8yHwMSgpUDV2C5ae0=";
};
-
vendorSha256 = "sha256-h9qGrb2UxtdKewBsWNcir4YfjUNczYP+WiNoWx45w30=";
+
vendorSha256 = "sha256-zC4v9TlKHGCYRWX0ZWAVdCM7yw9eaAZ/4ZIZ38sM4S0=";
nativeBuildInputs = [ installShellFiles makeWrapper ];
+2 -2
pkgs/tools/admin/awscli2/default.nix
···
in
with py.pkgs; buildPythonApplication rec {
pname = "awscli2";
-
version = "2.9.8"; # N.B: if you change this, check if overrides are still up-to-date
+
version = "2.9.10"; # N.B: if you change this, check if overrides are still up-to-date
format = "pyproject";
src = fetchFromGitHub {
owner = "aws";
repo = "aws-cli";
rev = version;
-
hash = "sha256-Q1iHGwkFg0rkunwEgWQIqLEPAGfOLfqA1UpjmCe2x8M=";
+
hash = "sha256-rRtC1OApm9fEd79I3ZD0kVbvqwsSNog46zHfdqTw5Pk=";
};
nativeBuildInputs = [
+2 -2
pkgs/tools/misc/tfk8s/default.nix
···
buildGoModule rec {
pname = "tfk8s";
-
version = "0.1.8";
+
version = "0.1.10";
tag = "v${version}";
src = fetchFromGitHub {
owner = "jrhouston";
repo = "tfk8s";
rev = tag;
-
sha256 = "sha256-9k/1PZch5qUlCmD7Y1chw2NL6hKV6mUYAHgR7Sbv/qs=";
+
sha256 = "sha256-VLpXL5ABnCxc+7dV3sZ6wsY2nKn2yfu7eTjtn881/XQ=";
};
vendorSha256 = "sha256-eTADcUW9b6l47BkWF9YLxdcgvMbCzWTjLF28FneJHg8=";
+2 -2
pkgs/tools/wayland/kanshi/default.nix
···
stdenv.mkDerivation rec {
pname = "kanshi";
-
version = "1.3.0";
+
version = "1.3.1";
src = fetchFromSourcehut {
owner = "~emersion";
repo = "kanshi";
rev = "v${version}";
-
sha256 = "kqTRJhLd9vLGAPO5U5cWeZgzWzne+0Cr4TIS0ciZSGk=";
+
sha256 = "sha256-eGcgqj214fcfOrKqrAsxLG9LiNlAsWu0sgjxBB01u6Q=";
};
strictDeps = true;