summary refs log tree commit diff
diff options
context:
space:
mode:
authorPascal Wittmann <PascalWittmann@gmx.net>2017-05-12 16:22:17 +0200
committerGitHub <noreply@github.com>2017-05-12 16:22:17 +0200
commiteb1de24c89bc0c79d01b1ee25141d40ceb078f31 (patch)
treeba28942049de3eee9369d4705904571ebcef1364
parent8f86f9a4eb3b3a472789bfb54f70c428118b0eaf (diff)
parent83edd95335d024016fda312aa4b99a4f0022ba39 (diff)
downloadnixlib-eb1de24c89bc0c79d01b1ee25141d40ceb078f31.tar
nixlib-eb1de24c89bc0c79d01b1ee25141d40ceb078f31.tar.gz
nixlib-eb1de24c89bc0c79d01b1ee25141d40ceb078f31.tar.bz2
nixlib-eb1de24c89bc0c79d01b1ee25141d40ceb078f31.tar.lz
nixlib-eb1de24c89bc0c79d01b1ee25141d40ceb078f31.tar.xz
nixlib-eb1de24c89bc0c79d01b1ee25141d40ceb078f31.tar.zst
nixlib-eb1de24c89bc0c79d01b1ee25141d40ceb078f31.zip
Merge pull request #25727 from zraexy/zraexy-pkg-streamlink
streamlink: 0.5.0 -> 0.6.0
-rw-r--r--pkgs/applications/video/streamlink/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/streamlink/default.nix b/pkgs/applications/video/streamlink/default.nix
index 4891592bc7e4..513eea07ceda 100644
--- a/pkgs/applications/video/streamlink/default.nix
+++ b/pkgs/applications/video/streamlink/default.nix
@@ -1,14 +1,14 @@
 { stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
 
 pythonPackages.buildPythonApplication rec {
-  version = "0.5.0";
+  version = "0.6.0";
   name = "streamlink-${version}";
 
   src = fetchFromGitHub {
     owner = "streamlink";
     repo = "streamlink";
     rev = "${version}";
-    sha256 = "08q7f1fnm3zhs1knrkl6npr4yvpblqbiwa0m9r186ny11jq2dyib";
+    sha256 = "0602mybh9qrxbalnpg930prjfmfkfiwdyr6iz4byfzv0qrwa08yq";
   };
 
   buildInputs = with pythonPackages; [ pytest mock ];