about summary refs log tree commit diff
path: root/pkgs/servers/invidious/videojs.nix
blob: dcd6e9e97cbf3689f5bf0719845c3f27151392b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenvNoCC
, cacert
, crystal
, openssl
, pkg-config
, invidious
, versions
}:

stdenvNoCC.mkDerivation {
  name = "videojs";

  inherit (invidious) src;

  builder = ./videojs.sh;

  nativeBuildInputs = [ cacert crystal openssl pkg-config ];

  outputHashAlgo = "sha256";
  outputHashMode = "recursive";
  outputHash = versions.videojs.hash;
}