peertube: 6.3.3 -> 7.0.1 (#377362)

This commit is contained in:
Gaétan Lepage 2025-04-10 10:33:45 +02:00 committed by GitHub
commit 8592642004
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 12 deletions

View File

@ -10,7 +10,7 @@
fixup-yarn-lock,
jq,
fd,
nodejs,
nodejs_18,
which,
yarn,
}:
@ -48,33 +48,33 @@ let
in
stdenv.mkDerivation rec {
pname = "peertube";
version = "6.3.3";
version = "7.0.1";
src = fetchFromGitHub {
owner = "Chocobozzz";
repo = "PeerTube";
tag = "v${version}";
hash = "sha256-kPZcCJtnoqE1g0fAuM98IhuDy1E9QBDkFNWrWIpFIDA=";
hash = "sha256-DoUSzqb8lrU+s5R95rxCN/5A8sgb11edAhv0T6YACRo=";
};
yarnOfflineCacheServer = fetchYarnDeps {
yarnLock = "${src}/yarn.lock";
hash = "sha256-I6TC5KO+NQ0NAtoJzYQPLelp8/hYUtIeof+UI45qpdk=";
hash = "sha256-WLaIIyz6SEekLFeVO39Swpny5/x5Jc1zoxy/6bmOXTk=";
};
yarnOfflineCacheClient = fetchYarnDeps {
yarnLock = "${src}/client/yarn.lock";
hash = "sha256-ADck9+5TDZ3OGInZ+NYYpBg9XXHugtiwyxYCYqSIOzM=";
hash = "sha256-/ZdORSnwk29ubsgKKB7RfHCetODNOH9DzkflQdDsMz0=";
};
yarnOfflineCacheAppsCli = fetchYarnDeps {
yarnLock = "${src}/apps/peertube-cli/yarn.lock";
hash = "sha256-t5MwysPVLbtIfDhvnwWoGocck1ntP8OP9Vf9DF6L7Cg=";
hash = "sha256-lcWtZGE/6XGm8KXmzSowCHAb/vGwBoqkwk32Ru3mMYU=";
};
yarnOfflineCacheAppsRunner = fetchYarnDeps {
yarnLock = "${src}/apps/peertube-runner/yarn.lock";
hash = "sha256-x5qFCprn8q0xC88HudLV7W53X1Nkbz3F52RMp2PxIu8=";
hash = "sha256-R7oXJUT698l2D1WkQGTWfkmbC7bC1XJ04xT0O8bwuI8=";
};
outputs = [
@ -92,7 +92,7 @@ stdenv.mkDerivation rec {
fd
];
buildInputs = [ nodejs ];
buildInputs = [ nodejs_18 ];
buildPhase = ''
# Build node modules

View File

@ -15775,10 +15775,6 @@ with pkgs;
stdenv = gccStdenv;
};
peertube = callPackage ../servers/peertube {
nodejs = nodejs_18;
};
photoflare = libsForQt5.callPackage ../applications/graphics/photoflare { };
phototonic = libsForQt5.callPackage ../applications/graphics/phototonic { };