summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorzraexy <zraexy@users.noreply.github.com>2016-10-31 09:20:23 -0800
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2016-10-31 20:07:49 +0200
commite675b2c0deb24aabbefbfe342945c20cab616bfb (patch)
tree02f42437f53be5ae25c2f8a9bcd18e8d201eb9e0 /pkgs/applications/video
parent3c6e0f1207193c4395183350d0ef878167da89bd (diff)
downloadnixlib-e675b2c0deb24aabbefbfe342945c20cab616bfb.tar
nixlib-e675b2c0deb24aabbefbfe342945c20cab616bfb.tar.gz
nixlib-e675b2c0deb24aabbefbfe342945c20cab616bfb.tar.bz2
nixlib-e675b2c0deb24aabbefbfe342945c20cab616bfb.tar.lz
nixlib-e675b2c0deb24aabbefbfe342945c20cab616bfb.tar.xz
nixlib-e675b2c0deb24aabbefbfe342945c20cab616bfb.tar.zst
nixlib-e675b2c0deb24aabbefbfe342945c20cab616bfb.zip
streamlink: 1.14.0-rc1 -> 0.0.2
Update streamlink to 0.0.2
1.14.0-rc1 was not an official release
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/streamlink/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/video/streamlink/default.nix b/pkgs/applications/video/streamlink/default.nix
index cca1ed34f6dc..f516c871f51d 100644
--- a/pkgs/applications/video/streamlink/default.nix
+++ b/pkgs/applications/video/streamlink/default.nix
@@ -1,14 +1,14 @@
 { stdenv, pythonPackages, fetchFromGitHub, rtmpdump }:
 
 pythonPackages.buildPythonApplication rec {
-  version = "1.14.0-rc1";
+  version = "0.0.2";
   name = "streamlink-${version}";
 
   src = fetchFromGitHub {
     owner = "streamlink";
     repo = "streamlink";
-    rev = "ffc099b16b9a9d2c0c44081d687c50ee2e935f29";
-    sha256 = "0ix2k2yd2jzcazkjjb0iczr4bv7pgx873k7bhxgb9zwplklxpw1k";
+    rev = "${version}";
+    sha256 = "156b3smivs8lja7a98g3qa74bawqhc4mi8w8f3dscampbxx4dr9y";
   };
 
   propagatedBuildInputs = (with pythonPackages; [ pycrypto requests2 ]) ++ [ rtmpdump ];