Merge pull request #3437 from Fuuzetsu/youtube-dl

youtube-dl: update to 2014.08.02.1
This commit is contained in:
aszlig 2014-08-02 19:07:48 +02:00
commit 7e3815c336
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, python, zip }:
let
version = "2014.04.02";
version = "2014.08.02.1";
in
stdenv.mkDerivation rec {
name = "youtube-dl-${version}";
src = fetchurl {
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
sha256 = "1c9d5wjl0aaqfvz868wbkr3dwby9vjkx0hkbnwx0wnpg48nlnwpm";
sha256 = "0pn8vfzsxp0qbjidhi6pwr1cfinqbr9wcr7sipr97j4ja9m5kkha";
};
buildInputs = [ python ];