6 python3Packages.buildPythonApplication rec {
10 src = fetchFromGitHub {
12 repo = "youtube-dl-gui";
14 hash = "sha256-W1ZlArmM+Ro5MF/rB88me/PD79dJA4v188mPbMd8Kow=";
18 pythonRelaxDeps = [ "wxpython" ];
19 build-system = with python3Packages; [
23 dependencies = with python3Packages; [
29 install -Dm444 yt-dlg.desktop -t $out/share/applications
30 cp -r youtube_dl_gui/data/* $out/share
34 description = "Cross platform front-end GUI of the popular youtube-dl written in wxPython";
35 homepage = "https://oleksis.github.io/youtube-dl-gui";
36 license = lib.licenses.unlicense;
37 mainProgram = "yt-dlg";
38 maintainers = with lib.maintainers; [ quantenzitrone ];