mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
35 lines
972 B
Nix
35 lines
972 B
Nix
{ lib, stdenv, fetchFromGitHub, libsodium, ncurses, curl
|
|
, libtoxcore, openal, libvpx, freealut, libconfig, pkg-config, libopus
|
|
, qrencode, gdk-pixbuf, libnotify }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "toxic";
|
|
version = "0.15.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TokTok";
|
|
repo = "toxic";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-+nOjlQED2pbYwGV6IGeKK1pymBSrDVWCWKjZ42vib7E=";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)"];
|
|
installFlags = [ "PREFIX=$(out)"];
|
|
|
|
buildInputs = [
|
|
libtoxcore libsodium ncurses curl gdk-pixbuf libnotify
|
|
] ++ lib.optionals (!stdenv.isAarch32) [
|
|
openal libopus libvpx freealut qrencode
|
|
];
|
|
nativeBuildInputs = [ pkg-config libconfig ];
|
|
|
|
meta = src.meta // {
|
|
description = "Reference CLI for Tox";
|
|
mainProgram = "toxic";
|
|
homepage = "https://github.com/TokTok/toxic";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ ehmry ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|