Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / invidious / videojs.nix
blobdcd6e9e97cbf3689f5bf0719845c3f27151392b0
1 { stdenvNoCC
2 , cacert
3 , crystal
4 , openssl
5 , pkg-config
6 , invidious
7 , versions
8 }:
10 stdenvNoCC.mkDerivation {
11   name = "videojs";
13   inherit (invidious) src;
15   builder = ./videojs.sh;
17   nativeBuildInputs = [ cacert crystal openssl pkg-config ];
19   outputHashAlgo = "sha256";
20   outputHashMode = "recursive";
21   outputHash = versions.videojs.hash;