Bump 'svtplay-dl' to version 0.10.2015.05.24.

Also switch to `fetchFromGitHub` from plain `fetchurl`.
This commit is contained in:
Robert Helgesson 2015-05-31 22:38:44 +02:00
parent b43f5d3881
commit e9f9d1c029

View File

@ -1,13 +1,15 @@
{ stdenv, fetchurl, makeWrapper, python, perl, zip { stdenv, fetchFromGitHub, makeWrapper, python, perl, zip
, rtmpdump, nose, mock, pycrypto, substituteAll }: , rtmpdump, nose, mock, pycrypto, substituteAll }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "svtplay-dl-${version}"; name = "svtplay-dl-${version}";
version = "0.10.2015.03.25"; version = "0.10.2015.05.24";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/spaam/svtplay-dl/archive/${version}.tar.gz"; owner = "spaam";
sha256 = "0j0fg3qrldpaf880v488rr2snw6ghpdln4l9mbvmi70rjzzxv4ap"; repo = "svtplay-dl";
rev = version;
sha256 = "0dzd5n4zvrplvm3sx017ym7jlngp4pn8nra9qx9n4wq6h4c6n6a5";
}; };
pythonPaths = [ pycrypto ]; pythonPaths = [ pycrypto ];