Merge pull request #229504 from idlip/dra-cla

dra-cla: init at 2023-03-10

authored by

figsoda and committed by
GitHub
44414a98 f3afb133

+53
+6
maintainers/maintainer-list.nix
··· 6612 6612 github = "Icy-Thought"; 6613 6613 githubId = 53710398; 6614 6614 }; 6615 + idlip = { 6616 + name = "Dilip"; 6617 + email = "igoldlip@gmail.com"; 6618 + github = "idlip"; 6619 + githubId = 117019901; 6620 + }; 6615 6621 idontgetoutmuch = { 6616 6622 email = "dominic@steinitz.org"; 6617 6623 github = "idontgetoutmuch";
+45
pkgs/applications/video/dra-cla/default.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + , makeWrapper 5 + , gnugrep 6 + , gnused 7 + , curl 8 + , mpv 9 + , aria2 10 + , ffmpeg 11 + , openssl 12 + }: 13 + 14 + stdenvNoCC.mkDerivation { 15 + pname = "dra-cla"; 16 + version = "unstable-2023-03-10"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "CoolnsX"; 20 + repo = "dra-cla"; 21 + rev = "fd5e43bb32b5bc9013382917d1efacda9c3071a8"; 22 + hash = "sha256-SMtuflVsxe0PWmzabSDy+vhIN2bTqyiYAT/T1ChY+xY="; 23 + }; 24 + 25 + nativeBuildInputs = [ makeWrapper ]; 26 + 27 + installPhase = '' 28 + runHook preInstall 29 + 30 + install -Dm755 dra-cla $out/bin/dra-cla 31 + 32 + wrapProgram $out/bin/dra-cla \ 33 + --prefix PATH : ${lib.makeBinPath [ gnugrep gnused curl mpv aria2 ffmpeg openssl ]} 34 + 35 + runHook postInstall 36 + ''; 37 + 38 + meta = with lib; { 39 + homepage = "https://github.com/CoolnsX/dra-cla"; 40 + description = "A cli tool to browse and play korean drama, chinese drama"; 41 + license = licenses.gpl3Only; 42 + maintainers = with maintainers; [ idlip ]; 43 + platforms = platforms.unix; 44 + }; 45 + }
+2
pkgs/top-level/all-packages.nix
··· 250 250 251 251 ani-cli = callPackage ../applications/video/ani-cli { }; 252 252 253 + dra-cla = callPackage ../applications/video/dra-cla { }; 254 + 253 255 anime-downloader = callPackage ../applications/video/anime-downloader { }; 254 256 255 257 aocd = with python3Packages; toPythonApplication aocd;