
Changelog: https://github.com/yt-dlp/yt-dlp/releases/tag/2025.08.11 Diff: https://github.com/yt-dlp/yt-dlp/compare/2025.07.21...2025.08.11
136 lines
3.8 KiB
Nix
136 lines
3.8 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
ffmpeg-headless,
|
|
rtmpdump,
|
|
atomicparsley,
|
|
pandoc,
|
|
installShellFiles,
|
|
atomicparsleySupport ? true,
|
|
ffmpegSupport ? true,
|
|
rtmpSupport ? true,
|
|
withAlias ? false, # Provides bin/youtube-dl for backcompat
|
|
nix-update-script,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "yt-dlp";
|
|
# The websites yt-dlp deals with are a very moving target. That means that
|
|
# downloads break constantly. Because of that, updates should always be backported
|
|
# to the latest stable release.
|
|
version = "2025.08.11";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yt-dlp";
|
|
repo = "yt-dlp";
|
|
tag = version;
|
|
hash = "sha256-j7x844MPPFdXYTJiiMnru3CE79A/6JdfJDdh8it9KsU=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace yt_dlp/version.py \
|
|
--replace-fail "UPDATE_HINT = None" 'UPDATE_HINT = "Nixpkgs/NixOS likely already contain an updated version.\n To get it run nix-channel --update or nix flake update in your config directory."'
|
|
'';
|
|
|
|
build-system = with python3Packages; [ hatchling ];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
pandoc
|
|
];
|
|
|
|
# expose optional-dependencies, but provide all features
|
|
dependencies = lib.flatten (lib.attrValues optional-dependencies);
|
|
|
|
optional-dependencies = {
|
|
default = with python3Packages; [
|
|
brotli
|
|
certifi
|
|
mutagen
|
|
pycryptodomex
|
|
requests
|
|
urllib3
|
|
websockets
|
|
];
|
|
curl-cffi = [ python3Packages.curl-cffi ];
|
|
secretstorage = with python3Packages; [
|
|
cffi
|
|
secretstorage
|
|
];
|
|
};
|
|
|
|
pythonRelaxDeps = [ "websockets" ];
|
|
|
|
preBuild = ''
|
|
python devscripts/make_lazy_extractors.py
|
|
'';
|
|
|
|
postBuild = ''
|
|
python devscripts/prepare_manpage.py yt-dlp.1.temp.md
|
|
pandoc -s -f markdown-smart -t man yt-dlp.1.temp.md -o yt-dlp.1
|
|
rm yt-dlp.1.temp.md
|
|
|
|
mkdir -p completions/{bash,fish,zsh}
|
|
python devscripts/bash-completion.py completions/bash/yt-dlp
|
|
python devscripts/zsh-completion.py completions/zsh/_yt-dlp
|
|
python devscripts/fish-completion.py completions/fish/yt-dlp.fish
|
|
'';
|
|
|
|
# Ensure these utilities are available in $PATH:
|
|
# - ffmpeg: post-processing & transcoding support
|
|
# - rtmpdump: download files over RTMP
|
|
# - atomicparsley: embedding thumbnails
|
|
makeWrapperArgs =
|
|
let
|
|
packagesToBinPath =
|
|
[ ]
|
|
++ lib.optional atomicparsleySupport atomicparsley
|
|
++ lib.optional ffmpegSupport ffmpeg-headless
|
|
++ lib.optional rtmpSupport rtmpdump;
|
|
in
|
|
lib.optionals (packagesToBinPath != [ ]) [
|
|
''--prefix PATH : "${lib.makeBinPath packagesToBinPath}"''
|
|
];
|
|
|
|
# Requires network
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
installManPage yt-dlp.1
|
|
|
|
installShellCompletion \
|
|
--bash completions/bash/yt-dlp \
|
|
--fish completions/fish/yt-dlp.fish \
|
|
--zsh completions/zsh/_yt-dlp
|
|
|
|
install -Dm644 Changelog.md README.md -t "$out/share/doc/yt_dlp"
|
|
''
|
|
+ lib.optionalString withAlias ''
|
|
ln -s "$out/bin/yt-dlp" "$out/bin/youtube-dl"
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
changelog = "https://github.com/yt-dlp/yt-dlp/blob/${version}/Changelog.md";
|
|
description = "Command-line tool to download videos from YouTube.com and other sites (youtube-dl fork)";
|
|
homepage = "https://github.com/yt-dlp/yt-dlp/";
|
|
license = lib.licenses.unlicense;
|
|
longDescription = ''
|
|
yt-dlp is a youtube-dl fork based on the now inactive youtube-dlc.
|
|
|
|
youtube-dl is a small, Python-based command-line program
|
|
to download videos from YouTube.com and a few more sites.
|
|
youtube-dl is released to the public domain, which means
|
|
you can modify it, redistribute it or use it however you like.
|
|
'';
|
|
mainProgram = "yt-dlp";
|
|
maintainers = with lib.maintainers; [
|
|
SuperSandro2000
|
|
donteatoreo
|
|
];
|
|
};
|
|
}
|