Merge pull request #309326 from mjoerg/streamlink-fix-build

streamlink: add missing dependency

authored by Aleksana and committed by GitHub 7be445e5 5e141ace

+4 -3
+4 -3
pkgs/applications/video/streamlink/default.nix
··· 42 42 43 43 propagatedBuildInputs = with python3Packages; [ 44 44 certifi 45 + exceptiongroup 45 46 isodate 46 47 lxml 47 48 pycountry ··· 55 56 websocket-client 56 57 ]; 57 58 58 - meta = with lib; { 59 + meta = { 59 60 changelog = "https://github.com/streamlink/streamlink/raw/${version}/CHANGELOG.md"; 60 61 description = "CLI for extracting streams from various websites to video player of your choosing"; 61 62 homepage = "https://streamlink.github.io/"; ··· 66 67 67 68 Streamlink is a fork of the livestreamer project. 68 69 ''; 69 - license = licenses.bsd2; 70 + license = lib.licenses.bsd2; 70 71 mainProgram = "streamlink"; 71 - maintainers = with maintainers; [ dezgeg zraexy DeeUnderscore ]; 72 + maintainers = with lib.maintainers; [ dezgeg zraexy DeeUnderscore ]; 72 73 }; 73 74 }