41 lines
941 B
Nix
41 lines
941 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "yt-dlg";
|
|
version = "1.8.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "oleksis";
|
|
repo = "youtube-dl-gui";
|
|
rev = "v${version}";
|
|
hash = "sha256-W1ZlArmM+Ro5MF/rB88me/PD79dJA4v188mPbMd8Kow=";
|
|
};
|
|
|
|
pyproject = true;
|
|
pythonRelaxDeps = [ "wxpython" ];
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
wheel
|
|
];
|
|
dependencies = with python3Packages; [
|
|
pypubsub
|
|
wxpython
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm444 yt-dlg.desktop -t $out/share/applications
|
|
cp -r youtube_dl_gui/data/* $out/share
|
|
'';
|
|
|
|
meta = {
|
|
description = "Cross platform front-end GUI of the popular youtube-dl written in wxPython";
|
|
homepage = "https://oleksis.github.io/youtube-dl-gui";
|
|
license = lib.licenses.unlicense;
|
|
mainProgram = "yt-dlg";
|
|
maintainers = with lib.maintainers; [ quantenzitrone ];
|
|
};
|
|
}
|