Unverified Commit b07adff9 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #296699 from stepbrobd/crunchy-cli

crunchy-cli: 3.2.5 -> 3.3.1
parents fbe9db49 908f7245
Loading
Loading
Loading
Loading
+267 −232

File changed.

Preview size limit exceeded, changes collapsed.

+8 −5
Original line number Diff line number Diff line
@@ -5,17 +5,18 @@
, openssl
, pkg-config
, rustPlatform
, nix-update-script
}:

rustPlatform.buildRustPackage rec {
  pname = "crunchy-cli";
  version = "3.2.5";
  version = "3.3.1";

  src = fetchFromGitHub {
    owner = "crunchy-labs";
    repo = "crunchy-cli";
    rev = "v${version}";
    hash = "sha256-hzmTwUd+bQwr+5UtXKMalJZUDxOC5nhXNTXbYZN8xtA=";
    hash = "sha256-qpbAUqtSOLO1m4gF7+rwArIEpbGnssqw1B/kPrmOhm0=";
  };

  cargoLock = {
@@ -39,11 +40,13 @@ rustPlatform.buildRustPackage rec {
    OPENSSL_NO_VENDOR = true;
  };

  meta = with lib; {
  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Command-line downloader for Crunchyroll";
    homepage = "https://github.com/crunchy-labs/crunchy-cli";
    license = licenses.mit;
    maintainers = with maintainers; [ stepbrobd ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ stepbrobd ];
    mainProgram = "crunchy-cli";
  };
}