nixpkgs/pkgs/applications/networking/instant-messengers/twitch-tui/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
651 B
Nix
Raw Normal View History

2022-07-21 21:43:06 +00:00
{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl }:
rustPlatform.buildRustPackage rec {
pname = "twitch-tui";
version = "1.6.0";
src = fetchFromGitHub {
owner = "Xithrius";
repo = pname;
rev = "v${version}";
sha256 = "sha256-144yn/QQPIZJOgqKFUWjB7KCmEKfNpj6XjMGhTpQdEQ=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
cargoHash = "sha256-zUeI01EyXsuoKzHbpVu3jyA3H2aBk6wMY+GW3h3v8vc=";
meta = with lib; {
description = "Twitch chat in the terminal";
homepage = "https://github.com/Xithrius/twitch-tui";
license = licenses.mit;
maintainers = [ maintainers.taha ];
};
}