30 lines
712 B
Nix
30 lines
712 B
Nix
{ lib, stdenv, fetchurl, autoPatchelfHook }: let
|
|
version = "2024.04.09";
|
|
hash = "sha256-agT93DYJ0ic2w5ojumGRMzJomt6DgIkqrIRvTO11PHs=";
|
|
in stdenv.mkDerivation {
|
|
name = "ytdlp";
|
|
|
|
dontUnpack = true;
|
|
|
|
# https://github.com/yt-dlp/yt-dlp
|
|
src = fetchurl {
|
|
url = "https://github.com/yt-dlp/yt-dlp/releases/download/${version}/yt-dlp_linux";
|
|
sha256 = "${hash}";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp $src $out/bin/yt-dlp
|
|
chmod +x $out/bin/yt-dlp
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Youtube Downloader.";
|
|
homepage = "https://github.com/yt-dlp/yt-dlp";
|
|
license = licenses.unlicense;
|
|
meta.platforms = platforms.all;
|
|
};
|
|
}
|