mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
youtube-dl: update to 2014.12.06.1
Also add self to maintainers considering I bump it pretty often already.
This commit is contained in:
parent
7080a9cae8
commit
ddcb9db54f
1 changed files with 3 additions and 3 deletions
|
@ -1,14 +1,14 @@
|
|||
{ stdenv, fetchurl, python, zip }:
|
||||
|
||||
let
|
||||
version = "2014.11.27";
|
||||
version = "2014.12.06.1";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "youtube-dl-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
|
||||
sha256 = "0bmjlp3jk5nd2i9jpbqbv2smh5rdxcjajv7fccfinmi6v2bjm1aa";
|
||||
sha256 = "07nxxxcv8vpfps7vwjby3hg09vzykr97a5qmvz868a15jmdma2ah";
|
||||
};
|
||||
|
||||
buildInputs = [ python ];
|
||||
|
@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
|
|||
license = stdenv.lib.licenses.unlicense;
|
||||
|
||||
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
||||
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons phreedom AndersonTorres ];
|
||||
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons phreedom AndersonTorres fuuzetsu ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue