summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/qtox/default.nix
blob: 9771f29c770f8dbbdb8680bfff35f7578f23c137 (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
46
47
48
49
50
51
{ stdenv, fetchFromGitHub, pkgconfig, libtoxcore, qt5, openalSoft, opencv
, libsodium, libXScrnSaver }:

let

  filteraudio = stdenv.mkDerivation rec {
    name = "filter_audio-20150128";

    src = fetchFromGitHub {
      owner = "irungentoo";
      repo = "filter_audio";
      rev = "76428a6cda";
      sha256 = "0c4wp9a7dzbj9ykfkbsxrkkyy0nz7vyr5map3z7q8bmv9pjylbk9";
    };

    doCheck = false;

    makeFlags = "PREFIX=$(out)";
  };

in stdenv.mkDerivation rec {
  name = "qtox-dev-20150130";

  src = fetchFromGitHub {
    owner = "tux3";
    repo = "qTox";
    rev = "7574569b3d";
    sha256 = "0a7zkhl4w2r5ifzs7vwws2lpplp6q5c4jllyf4ld64njgiz6jzip";
  };

  buildInputs =
    [
      libtoxcore openalSoft opencv libsodium filteraudio
      qt5.base qt5.tools libXScrnSaver
    ];
  nativeBuildInputs = [ pkgconfig ];

  configurePhase = "qmake";

  installPhase = ''
    mkdir -p $out/bin
    cp qtox $out/bin
  '';

  meta = with stdenv.lib; {
    description = "QT Tox client";
    license = licenses.gpl3;
    maintainers = with maintainers; [ viric jgeerds ];
    platforms = platforms.all;
  };
}