Merge master into staging-next

This commit is contained in:
nixpkgs-ci[bot]
2025-02-17 18:04:38 +00:00
committed by GitHub
3 changed files with 7 additions and 5 deletions
@@ -120,5 +120,6 @@ stdenv.mkDerivation (finalAttrs: {
license = licenses.gpl2Plus;
maintainers = with maintainers; [ doronbehar ];
platforms = platforms.linux ++ platforms.darwin;
mainProgram = "syncthingtray";
};
})
+2 -2
View File
@@ -82,13 +82,13 @@ let
in
effectiveStdenv.mkDerivation (finalAttrs: {
pname = "llama-cpp";
version = "4621";
version = "4731";
src = fetchFromGitHub {
owner = "ggerganov";
repo = "llama.cpp";
tag = "b${finalAttrs.version}";
hash = "sha256-6/M1KbGEXYwalHP9PyW7kIJKdEBDViVIO3s6VHp4PbM=";
hash = "sha256-XB7TI1/Ui9BGdsD5TVH5MMZalgEGquW9wYcAhxgAcP0=";
leaveDotGit = true;
postFetch = ''
git -C "$out" rev-parse --short HEAD > $out/COMMIT
+4 -3
View File
@@ -246,20 +246,21 @@ buildMattermost rec {
};
};
meta = with lib; {
meta = {
description = "Mattermost is an open source platform for secure collaboration across the entire software development lifecycle";
homepage = "https://www.mattermost.org";
license = with licenses; [
license = with lib.licenses; [
agpl3Only
asl20
];
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
ryantm
numinit
kranzes
mgdelacroix
fsagbuya
];
platforms = lib.platforms.linux;
mainProgram = "mattermost";
};
}