nyaa 0.9.0

A tui tool for browsing and downloading torrents from nyaa.si
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
{pkgs ? import <nixpkgs> {}}:
pkgs.rustPlatform.buildRustPackage {
  pname = "nyaa";
  version =
    (builtins.fromTOML (
      builtins.readFile ./Cargo.toml
    ))
    .package
    .version;

  cargoLock.lockFile = ./Cargo.lock;
  src = pkgs.lib.cleanSource ./.;
}