2016-09-21 17:25:52 +01:00
|
|
|
{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump }:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
2017-01-25 12:38:52 +00:00
|
|
|
version = "0.3.0";
|
2016-09-21 17:25:52 +01:00
|
|
|
name = "streamlink-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "streamlink";
|
|
|
|
repo = "streamlink";
|
2016-10-31 17:20:23 +00:00
|
|
|
rev = "${version}";
|
2017-01-25 12:38:52 +00:00
|
|
|
sha256 = "1bjih6y21vmjmsk3xvhgc1innymryklgylyvjrskqw610niai59j";
|
2016-09-21 17:25:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = (with pythonPackages; [ pycrypto requests2 ]) ++ [ rtmpdump ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/streamlink/streamlink;
|
2016-09-21 17:34:01 +01:00
|
|
|
description = "CLI for extracting streams from various websites to video player of your choosing";
|
|
|
|
longDescription = ''
|
2016-09-21 17:25:52 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|