mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #5031 from AndersonTorres/youtubeDL
Youtube-DL: update to 2014.11.16
This commit is contained in:
commit
dfc3140b3d
1 changed files with 2 additions and 2 deletions
|
@ -1,14 +1,14 @@
|
|||
{ stdenv, fetchurl, python, zip }:
|
||||
|
||||
let
|
||||
version = "2014.11.13.3";
|
||||
version = "2014.11.16";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "youtube-dl-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
|
||||
sha256 = "1qv59pd84fwm95p9gb1v2dy3qd02x530nccw8yh6gfwdfmg353lp";
|
||||
sha256 = "0i0j5dzmwil5x5qh6bghqy7zmj8wqqilp5m9sq95vqmsxpjfgw3q";
|
||||
};
|
||||
|
||||
buildInputs = [ python ];
|
||||
|
|
Loading…
Reference in a new issue