diff --git a/pkgs/applications/video/adl/default.nix b/pkgs/applications/video/adl/default.nix index 6bf36cc375b8..46e2bc492a87 100644 --- a/pkgs/applications/video/adl/default.nix +++ b/pkgs/applications/video/adl/default.nix @@ -1,21 +1,32 @@ -{ lib, stdenv, fetchFromGitHub, pkgs, makeWrapper, ... }: - -stdenv.mkDerivation rec { +{ lib +, stdenvNoCC +, fetchFromGitHub +, makeWrapper +, animdl +, frece +, fzf +, mpv +, perl +, trackma +, ueberzug +, ... +}: +stdenvNoCC.mkDerivation rec { pname = "adl"; - version = "3.0.1"; + version = "3.2.8"; src = fetchFromGitHub { owner = "RaitaroH"; repo = "adl"; - rev = "65f68e1dcae4c0caa52668d3a854269e7d226f7c"; - sha256 = "sha256-huGpDtkWrhZyKDNKXat8T3qtAyMjBaq8HFd1w1ThUVk="; + rev = "a40f31454de856d9e9235d6216eaf8f4296111c4"; + hash = "sha256-Kg/iGyEdWJyoPn5lVqRCJX2eqdP1xwZqNU2RvTrhZko="; }; nativeBuildInputs = [ makeWrapper ]; # https://github.com/RaitaroH/adl#requirements - buildInputs = with pkgs; [ - anime-downloader + buildInputs = [ + animdl frece fzf mpv @@ -35,10 +46,10 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://github.com/RaitaroH/adl"; - description = "popcorn anime-downloader + trackma wrapper"; - license = licenses.gpl3Plus; + description = "Popcorn anime scraper/downloader + trackma wrapper"; + license = licenses.gpl3Only; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ weathercold ]; mainProgram = "adl"; }; }