lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 18 lines 390 B view raw
1{ lib, stdenvNoCC, cacert, crystal, openssl, pkg-config, invidious }: 2 3let 4 versions = lib.importJSON ./versions.json; 5in 6stdenvNoCC.mkDerivation { 7 name = "videojs"; 8 9 inherit (invidious) src; 10 11 builder = ./videojs.sh; 12 13 nativeBuildInputs = [ cacert crystal openssl pkg-config ]; 14 15 outputHashAlgo = "sha256"; 16 outputHashMode = "recursive"; 17 outputHash = versions.videojs.sha256; 18}