8a45d4525b
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
18 lines
408 B
Nix
18 lines
408 B
Nix
{ stdenvNoCC, cacert, crystal, openssl, pkg-config, invidious }:
|
|
|
|
let
|
|
versions = builtins.fromJSON (builtins.readFile ./versions.json);
|
|
in
|
|
stdenvNoCC.mkDerivation {
|
|
name = "videojs";
|
|
|
|
inherit (invidious) src;
|
|
|
|
builder = ./videojs.sh;
|
|
|
|
nativeBuildInputs = [ cacert crystal openssl pkg-config ];
|
|
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = versions.videojs.sha256;
|
|
}
|