blob: 7e2a7e5ffaeed9b5de452da5b974e99d994432fd (
about) (
plain)
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
|
{
lib,
rustPlatform,
fetchFromGitHub,
stdenv,
darwin,
}:
rustPlatform.buildRustPackage rec {
pname = "twitch-hls-client";
version = "1.4.0";
src = fetchFromGitHub {
owner = "2bc4";
repo = "twitch-hls-client";
rev = version;
hash = "sha256-bMND6TFM2lpnUFE6BfrNF88JRImYJy/cGhbSjIWi974=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-TvgRj6OyDcL0/I0o14CD8t2+VYu37kFXMwrS093uA1o=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.Security
];
meta = with lib; {
description = "Minimal CLI client for watching/recording Twitch streams";
homepage = "https://github.com/2bc4/twitch-hls-client.git";
license = licenses.gpl3Only;
maintainers = with maintainers; [ lenivaya ];
mainProgram = "twitch-hls-client";
sourceProvenance = with lib.sourceTypes; [ fromSource ];
platforms = platforms.all;
};
}
|