mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / by-name / to / toxic / package.nix
blob036c96dd47d5382bd22ec900f1dfff985b452d5d
1 { lib, stdenv, fetchFromGitHub, libsodium, ncurses, curl
2 , libtoxcore, openal, libvpx, freealut, libconfig, pkg-config, libopus
3 , qrencode, gdk-pixbuf, libnotify }:
5 stdenv.mkDerivation rec {
6   pname = "toxic";
7   version = "0.15.1";
9   src = fetchFromGitHub {
10     owner  = "TokTok";
11     repo   = "toxic";
12     rev    = "v${version}";
13     hash = "sha256-+nOjlQED2pbYwGV6IGeKK1pymBSrDVWCWKjZ42vib7E=";
14   };
16   makeFlags = [ "PREFIX=$(out)"];
17   installFlags = [ "PREFIX=$(out)"];
19   buildInputs = [
20     libtoxcore libsodium ncurses curl gdk-pixbuf libnotify
21   ] ++ lib.optionals (!stdenv.hostPlatform.isAarch32) [
22     openal libopus libvpx freealut qrencode
23   ];
24   nativeBuildInputs = [ pkg-config libconfig ];
26   meta = src.meta // {
27     description = "Reference CLI for Tox";
28     mainProgram = "toxic";
29     homepage = "https://github.com/TokTok/toxic";
30     license = lib.licenses.gpl3Only;
31     maintainers = with lib.maintainers; [ ehmry ];
32     platforms = lib.platforms.linux;
33   };