Commit 7d043503 authored by haruki7049's avatar haruki7049 Committed by Cabia Rangris
Browse files

peertube-viewer: init at 1.8.6



Author: haruki7049 <tontonkirikiri@gmail.com>
Co-Authored-By: default avatarcab <cab@cab.moe>
parent b0c086e3
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitLab,
  rustPlatform,
  youtube-dl,
}:

rustPlatform.buildRustPackage rec {
  pname = "peertube-viewer";
  version = "1.8.6";

  src = fetchFromGitLab {
    owner = "peertube-viewer";
    repo = "peertube-viewer-rs";
    rev = "v1.8.6";
    hash = "sha256-ZzeWk01migUrKR7GndtNo0kLYSCUXCg0H0eCXgrDXaM==";
  };

  cargoHash = "sha256-5u5240PL5cKhnHsT7sRdccrbZBAbRN+fa+FhJP1gX/4==";

  meta = with lib; {
    description = "A simple CLI browser for the peertube federated video platform";
    homepage = "https://gitlab.com/peertube-viewer/peertube-viewer-rs";
    license = licenses.agpl3Only;
    maintainers = with maintainers; [ haruki7049 ];
  };
}