invidious: make versions overridable

This commit is contained in:
Sophie Tauchert 2024-04-29 20:09:38 +02:00 committed by Gaetan Lepage
parent 9e0ab0983a
commit 69d88e341d
3 changed files with 27 additions and 15 deletions

View File

@ -1,5 +1,15 @@
{ lib, stdenv, crystal, fetchFromGitea, librsvg, pkg-config, libxml2, openssl, shards, sqlite, videojs, nixosTests }:
let
{ lib
, callPackage
, crystal
, fetchFromGitea
, librsvg
, pkg-config
, libxml2
, openssl
, shards
, sqlite
, nixosTests
# All versions, revisions, and checksums are stored in ./versions.json.
# The update process is the following:
# * pick the latest tag
@ -9,10 +19,11 @@ let
# but nix's sandboxing does not allow that)
# * if shard.lock changed
# * recreate shards.nix by running crystal2nix
# * update lsquic and boringssl if necessarry, lsquic.cr depends on
# the same version of lsquic and lsquic requires the boringssl
# commit mentioned in its README
versions = lib.importJSON ./versions.json;
, versions ? lib.importJSON ./versions.json
}:
let
# normally video.js is downloaded at build time
videojs = callPackage ./videojs.nix { inherit versions; };
in
crystal.buildCrystalPackage rec {
pname = "invidious";
@ -23,7 +34,7 @@ crystal.buildCrystalPackage rec {
owner = "iv-org";
repo = "invidious";
fetchSubmodules = true;
rev = "v${version}";
rev = versions.invidious.rev or "v${version}";
inherit (versions.invidious) hash;
};

View File

@ -1,8 +1,12 @@
{ lib, stdenvNoCC, cacert, crystal, openssl, pkg-config, invidious }:
{ stdenvNoCC
, cacert
, crystal
, openssl
, pkg-config
, invidious
, versions
}:
let
versions = lib.importJSON ./versions.json;
in
stdenvNoCC.mkDerivation {
name = "videojs";

View File

@ -9258,10 +9258,7 @@ with pkgs;
internetarchive = with python3Packages; toPythonApplication internetarchive;
invidious = callPackage ../servers/invidious {
# normally video.js is downloaded at build time
videojs = callPackage ../servers/invidious/videojs.nix { };
};
invidious = callPackage ../servers/invidious { };
invoice2data = callPackage ../tools/text/invoice2data { };