summary refs log tree commit diff
path: root/pkgs/tools/networking/cmst/default.nix
blob: 1d9e2e1677fddaa4df5c42ece4dea380e62e1a49 (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
{ stdenv, fetchFromGitHub, qmake, qtbase, libX11 }:

stdenv.mkDerivation rec {
  name = "cmst-${version}";
  version = "2018.01.06";

  src = fetchFromGitHub {
    repo = "cmst";
    owner = "andrew-bibb";
    rev = name;
    sha256 = "1a3v7z75ghziymdj2w8603ql9nfac5q224ylfsqfxcqxw4bdip4r";
  };

  nativeBuildInputs = [ qmake ];

  buildInputs = [ qtbase ];

  enableParallelBuilding = true;

  postPatch = ''
    for f in $(find . -name \*.cpp -o -name \*.pri -o -name \*.pro); do
      substituteInPlace $f --replace /etc $out/etc --replace /usr $out
    done
  '';

  meta = {
    description = "QT GUI for Connman with system tray icon";
    homepage = https://github.com/andrew-bibb/cmst;
    maintainers = [ stdenv.lib.maintainers.matejc ];
    platforms = stdenv.lib.platforms.linux;
    license = stdenv.lib.licenses.mit;
  };
}