youtubeDL: update from 2014.03.07.1 to 2014.03.12, add myself as a maintainer

This commit is contained in:
Evgeny Egorochkin 2014-03-13 08:54:58 +02:00
parent 1b2902f8eb
commit 7c38f9afe1

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, python, zip }: { stdenv, fetchurl, python, zip }:
let let
version = "2014.03.07.1"; version = "2014.03.12";
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "youtube-dl-${version}"; name = "youtube-dl-${version}";
src = fetchurl { src = fetchurl {
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz"; url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
sha256 = "1yhjb5gk6l3y5p5fw246pww5yq661sr02zs17pqyxxbs2gx9kr4p"; sha256 = "1fap7mx2bmfr1jv7v5n2khl72mbasnzlasqd8gi654cl9xp12p5x";
}; };
buildInputs = [ python ]; buildInputs = [ python ];
@ -28,6 +28,6 @@ stdenv.mkDerivation rec {
description = "Command-line tool to download videos from YouTube.com and other sites"; description = "Command-line tool to download videos from YouTube.com and other sites";
platforms = with stdenv.lib.platforms; linux ++ darwin; platforms = with stdenv.lib.platforms; linux ++ darwin;
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons ]; maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons phreedom ];
}; };
} }