summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/mirage/default.nix
blob: f35db8e3a11bdd724e1380784db57af16bdae2f1 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{ lib
, stdenv
, mkDerivation
, fetchFromGitHub
, libXScrnSaver
, olm
, pkg-config
, pyotherside
, python3Packages
, qmake
, qtbase
, qtgraphicaleffects
, qtkeychain
, qtmultimedia
, qtquickcontrols2
, wrapQtAppsHook
}:

mkDerivation rec {
  pname = "mirage";
  version = "0.7.2";

  src = fetchFromGitHub {
    owner = "mirukana";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-dJS4lAXHHNUEAG75gQaS9+aQTTTj8KHqHjISioynFdY=";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [
    pkg-config
    python3Packages.wrapPython
    qmake
    wrapQtAppsHook
  ];

  buildInputs = [
    libXScrnSaver
    olm
    pyotherside
    qtbase
    qtgraphicaleffects
    qtkeychain
    qtmultimedia
    qtquickcontrols2
  ] ++ pythonPath;

  pythonPath = with python3Packages; [
    pillow
    aiofiles
    appdirs
    cairosvg
    filetype
    html-sanitizer
    lxml
    mistune
    pymediainfo
    plyer
    sortedcontainers
    watchgod
    redbaron
    hsluv
    simpleaudio
    setuptools
    watchgod
    dbus-python
  ];

  qmakeFlags = [
    "PREFIX=${placeholder "out"}"
    "CONFIG+=qtquickcompiler"
  ];

  dontWrapQtApps = true;
  postInstall = ''
    buildPythonPath "$out $pythonPath"
    wrapProgram $out/bin/mirage \
      --prefix PYTHONPATH : "$PYTHONPATH" \
      "''${qtWrapperArgs[@]}"
  '';

  meta = with lib; {
    homepage = "https://github.com/mirukana/mirage";
    description = "A fancy, customizable, keyboard-operable Qt/QML+Python Matrix chat client for encrypted and decentralized communication";
    license = licenses.lgpl3Plus;
    maintainers = with maintainers; [ colemickens AndersonTorres ];
    inherit (qtbase.meta) platforms;
    broken = stdenv.isDarwin || python3Packages.isPy37 || python3Packages.isPy38;
  };
}