2022-03-16 23:26:08 +00:00
|
|
|
|
{ lib, stdenv, crystal, fetchFromGitHub, librsvg, pkg-config, libxml2, openssl, shards, sqlite, lsquic, videojs, nixosTests }:
|
2019-08-26 20:13:57 +01:00
|
|
|
|
let
|
2022-03-13 10:35:06 +00:00
|
|
|
|
# All versions, revisions, and checksums are stored in ./versions.json.
|
|
|
|
|
# The update process is the following:
|
|
|
|
|
# * pick the latest commit
|
|
|
|
|
# * update .invidious.rev, .invidious.version, and .invidious.sha256
|
|
|
|
|
# * prefetch the videojs dependencies with scripts/fetch-player-dependencies.cr
|
|
|
|
|
# and update .videojs.sha256 (they are normally fetched during build
|
|
|
|
|
# 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
|
2022-03-02 10:53:08 +00:00
|
|
|
|
versions = builtins.fromJSON (builtins.readFile ./versions.json);
|
2019-08-26 20:13:57 +01:00
|
|
|
|
in
|
|
|
|
|
crystal.buildCrystalPackage rec {
|
|
|
|
|
pname = "invidious";
|
2022-03-02 10:53:08 +00:00
|
|
|
|
inherit (versions.invidious) version;
|
2019-08-26 20:13:57 +01:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "iv-org";
|
|
|
|
|
repo = pname;
|
2022-03-02 10:53:08 +00:00
|
|
|
|
inherit (versions.invidious) rev sha256;
|
2019-08-26 20:13:57 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
postPatch =
|
|
|
|
|
let
|
|
|
|
|
# Replacing by the value (templates) of the variables ensures that building
|
|
|
|
|
# fails if upstream changes the way the metadata is formatted.
|
|
|
|
|
branchTemplate = ''{{ "#{`git branch | sed -n '/* /s///p'`.strip}" }}'';
|
|
|
|
|
commitTemplate = ''{{ "#{`git rev-list HEAD --max-count=1 --abbrev-commit`.strip}" }}'';
|
|
|
|
|
versionTemplate = ''{{ "#{`git log -1 --format=%ci | awk '{print $1}' | sed s/-/./g`.strip}" }}'';
|
|
|
|
|
# This always uses the latest commit which invalidates the cache even if
|
|
|
|
|
# the assets were not changed
|
|
|
|
|
assetCommitTemplate = ''{{ "#{`git rev-list HEAD --max-count=1 --abbrev-commit -- assets`.strip}" }}'';
|
|
|
|
|
in
|
|
|
|
|
''
|
2022-01-15 16:24:18 +00:00
|
|
|
|
for d in ${videojs}/*; do ln -s "$d" assets/videojs; done
|
|
|
|
|
|
2019-08-26 20:13:57 +01:00
|
|
|
|
# Use the version metadata from the derivation instead of using git at
|
|
|
|
|
# build-time
|
|
|
|
|
substituteInPlace src/invidious.cr \
|
|
|
|
|
--replace ${lib.escapeShellArg branchTemplate} '"master"' \
|
2022-03-02 10:53:08 +00:00
|
|
|
|
--replace ${lib.escapeShellArg commitTemplate} '"${lib.substring 0 7 versions.invidious.rev}"' \
|
2019-08-26 20:13:57 +01:00
|
|
|
|
--replace ${lib.escapeShellArg versionTemplate} '"${lib.replaceChars ["-"] ["."] (lib.substring 9 10 version)}"' \
|
2022-03-02 10:53:08 +00:00
|
|
|
|
--replace ${lib.escapeShellArg assetCommitTemplate} '"${lib.substring 0 7 versions.invidious.rev}"'
|
2019-08-26 20:13:57 +01:00
|
|
|
|
|
|
|
|
|
# Patch the assets and locales paths to be absolute
|
|
|
|
|
substituteInPlace src/invidious.cr \
|
|
|
|
|
--replace 'public_folder "assets"' 'public_folder "${placeholder "out"}/share/invidious/assets"'
|
|
|
|
|
substituteInPlace src/invidious/helpers/i18n.cr \
|
|
|
|
|
--replace 'File.read("locales/' 'File.read("${placeholder "out"}/share/invidious/locales/'
|
|
|
|
|
|
|
|
|
|
# Reference sql initialisation/migration scripts by absolute path
|
2022-01-15 16:24:18 +00:00
|
|
|
|
substituteInPlace src/invidious/database/base.cr \
|
2019-08-26 20:13:57 +01:00
|
|
|
|
--replace 'config/sql' '${placeholder "out"}/share/invidious/config/sql'
|
|
|
|
|
|
2022-01-15 16:24:18 +00:00
|
|
|
|
substituteInPlace src/invidious/user/captcha.cr \
|
2019-08-26 20:13:57 +01:00
|
|
|
|
--replace 'Process.run(%(rsvg-convert' 'Process.run(%(${lib.getBin librsvg}/bin/rsvg-convert'
|
|
|
|
|
'';
|
|
|
|
|
|
2022-01-15 16:24:18 +00:00
|
|
|
|
nativeBuildInputs = [ pkg-config shards ];
|
2019-08-26 20:13:57 +01:00
|
|
|
|
buildInputs = [ libxml2 openssl sqlite ];
|
|
|
|
|
|
|
|
|
|
format = "crystal";
|
|
|
|
|
shardsFile = ./shards.nix;
|
2022-01-15 16:24:18 +00:00
|
|
|
|
crystalBinaries.invidious = {
|
|
|
|
|
src = "src/invidious.cr";
|
|
|
|
|
options = [ "--release" "--progress" "--verbose" "--no-debug" "-Dskip_videojs_download" ];
|
|
|
|
|
};
|
2019-08-26 20:13:57 +01:00
|
|
|
|
|
|
|
|
|
postConfigure = ''
|
|
|
|
|
# lib includes nix store paths which can’t be patched, so the links have to
|
|
|
|
|
# be dereferenced first.
|
|
|
|
|
cp -rL lib lib2
|
|
|
|
|
rm -r lib
|
|
|
|
|
mv lib2 lib
|
|
|
|
|
chmod +w -R lib
|
|
|
|
|
cp ${lsquic}/lib/liblsquic.a lib/lsquic/src/lsquic/ext
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
|
mkdir -p $out/share/invidious/config
|
|
|
|
|
|
|
|
|
|
# Copy static parts
|
|
|
|
|
cp -r assets locales $out/share/invidious
|
|
|
|
|
cp -r config/sql $out/share/invidious/config
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
# Invidious tries to open config/config.yml and connect to the database, even
|
|
|
|
|
# when running --help. This specifies a minimal configuration in an
|
|
|
|
|
# environment variable. Even though the database is bogus, --help still
|
|
|
|
|
# works.
|
|
|
|
|
installCheckPhase = ''
|
|
|
|
|
INVIDIOUS_CONFIG="database_url: sqlite3:///dev/null" $out/bin/invidious --help
|
|
|
|
|
'';
|
|
|
|
|
|
2021-12-15 14:38:00 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
inherit lsquic;
|
|
|
|
|
tests = { inherit (nixosTests) invidious; };
|
|
|
|
|
updateScript = ./update.sh;
|
|
|
|
|
};
|
2019-08-26 20:13:57 +01:00
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
|
description = "An open source alternative front-end to YouTube";
|
|
|
|
|
homepage = "https://invidious.io/";
|
|
|
|
|
license = licenses.agpl3;
|
|
|
|
|
maintainers = with maintainers; [ infinisil sbruder ];
|
2022-03-16 23:26:08 +00:00
|
|
|
|
broken = stdenv.isDarwin && stdenv.isAarch64;
|
2019-08-26 20:13:57 +01:00
|
|
|
|
};
|
|
|
|
|
}
|