lol

Merge master into staging-next

authored by

nixpkgs-ci[bot] and committed by
GitHub
ec38df95 1d16f334

+7 -5
+1
pkgs/applications/misc/syncthingtray/default.nix
··· 120 120 license = licenses.gpl2Plus; 121 121 maintainers = with maintainers; [ doronbehar ]; 122 122 platforms = platforms.linux ++ platforms.darwin; 123 + mainProgram = "syncthingtray"; 123 124 }; 124 125 })
+2 -2
pkgs/by-name/ll/llama-cpp/package.nix
··· 82 82 in 83 83 effectiveStdenv.mkDerivation (finalAttrs: { 84 84 pname = "llama-cpp"; 85 - version = "4621"; 85 + version = "4731"; 86 86 87 87 src = fetchFromGitHub { 88 88 owner = "ggerganov"; 89 89 repo = "llama.cpp"; 90 90 tag = "b${finalAttrs.version}"; 91 - hash = "sha256-6/M1KbGEXYwalHP9PyW7kIJKdEBDViVIO3s6VHp4PbM="; 91 + hash = "sha256-XB7TI1/Ui9BGdsD5TVH5MMZalgEGquW9wYcAhxgAcP0="; 92 92 leaveDotGit = true; 93 93 postFetch = '' 94 94 git -C "$out" rev-parse --short HEAD > $out/COMMIT
+4 -3
pkgs/by-name/ma/mattermost/package.nix
··· 246 246 }; 247 247 }; 248 248 249 - meta = with lib; { 249 + meta = { 250 250 description = "Mattermost is an open source platform for secure collaboration across the entire software development lifecycle"; 251 251 homepage = "https://www.mattermost.org"; 252 - license = with licenses; [ 252 + license = with lib.licenses; [ 253 253 agpl3Only 254 254 asl20 255 255 ]; 256 - maintainers = with maintainers; [ 256 + maintainers = with lib.maintainers; [ 257 257 ryantm 258 258 numinit 259 259 kranzes 260 260 mgdelacroix 261 261 fsagbuya 262 262 ]; 263 + platforms = lib.platforms.linux; 263 264 mainProgram = "mattermost"; 264 265 }; 265 266 }