mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
streamlink: Init at 1.14.0-rc1
A fork of livestreamer (which is no longer maintained) that actually works with Twitch.
This commit is contained in:
parent
7be4077832
commit
5aee5b2100
29
pkgs/applications/video/streamlink/default.nix
Normal file
29
pkgs/applications/video/streamlink/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
version = "1.14.0-rc1";
|
||||
name = "streamlink-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "streamlink";
|
||||
repo = "streamlink";
|
||||
rev = "ffc099b16b9a9d2c0c44081d687c50ee2e935f29";
|
||||
sha256 = "0ix2k2yd2jzcazkjjb0iczr4bv7pgx873k7bhxgb9zwplklxpw1k";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = (with pythonPackages; [ pycrypto requests2 ]) ++ [ rtmpdump ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/streamlink/streamlink;
|
||||
description = ''
|
||||
Streamlink is a CLI utility that pipes flash videos from online
|
||||
streaming services to a variety of video players such as VLC, or
|
||||
alternatively, a browser.
|
||||
|
||||
Streamlink is a fork of the livestreamer project.
|
||||
'';
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.dezgeg ];
|
||||
};
|
||||
}
|
@ -9584,6 +9584,8 @@ in
|
||||
|
||||
stlport = callPackage ../development/libraries/stlport { };
|
||||
|
||||
streamlink = callPackage ../applications/video/streamlink { pythonPackages = python3Packages; };
|
||||
|
||||
strigi = callPackage ../development/libraries/strigi { clucene_core = clucene_core_2; };
|
||||
|
||||
subtitleeditor = callPackage ../applications/video/subtitleeditor { };
|
||||
|
Loading…
Reference in New Issue
Block a user