lol

streamlink: 1.14.0-rc1 -> 0.0.2

Update streamlink to 0.0.2
1.14.0-rc1 was not an official release

authored by

zraexy and committed by
Tuomas Tynkkynen
e675b2c0 3c6e0f12

+3 -3
+3 -3
pkgs/applications/video/streamlink/default.nix
··· 1 1 { stdenv, pythonPackages, fetchFromGitHub, rtmpdump }: 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 - version = "1.14.0-rc1"; 4 + version = "0.0.2"; 5 5 name = "streamlink-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "streamlink"; 9 9 repo = "streamlink"; 10 - rev = "ffc099b16b9a9d2c0c44081d687c50ee2e935f29"; 11 - sha256 = "0ix2k2yd2jzcazkjjb0iczr4bv7pgx873k7bhxgb9zwplklxpw1k"; 10 + rev = "${version}"; 11 + sha256 = "156b3smivs8lja7a98g3qa74bawqhc4mi8w8f3dscampbxx4dr9y"; 12 12 }; 13 13 14 14 propagatedBuildInputs = (with pythonPackages; [ pycrypto requests2 ]) ++ [ rtmpdump ];