about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/crunchy-cli/default.nix
blob: 3efeeb8544d439ac4ba4e49f49db69d22a58751e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, stdenv
, clangStdenv
, darwin
, xcbuild
, openssl
, pkg-config
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage.override { stdenv = clangStdenv; } rec {
  pname = "crunchy-cli";
  version = "3.0.0-dev.10";

  src = fetchFromGitHub {
    owner = "crunchy-labs";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-uc19SmVfa5BZYDidlEgV6GNvcm9Dj0mSjdwHP5S+O4A=";
  };

  cargoHash = "sha256-H3D55qMUAF6t45mRbGZl+DORAl1H1a7AOe+lQP0WUUQ=";

  nativeBuildInputs = [
    pkg-config
  ] ++ lib.optionals stdenv.isDarwin [
    xcbuild
  ];

  buildInputs = [
    openssl
  ] ++ lib.optionals stdenv.isDarwin [
    darwin.apple_sdk.frameworks.Security
  ];

  meta = with lib; {
    description = "A pure Rust written Crunchyroll cli client and downloader";
    homepage = "https://github.com/crunchy-labs/crunchy-cli";
    license = with licenses; [ gpl3 ];
    maintainers = with maintainers; [ stepbrobd ];
    mainProgram = "crunchy-cli";
  };
}