2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchFromGitHub, qmake, qtbase }:
|
2014-09-12 04:51:20 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-07-25 12:32:42 -07:00
|
|
|
name = "cmst-${version}";
|
2018-03-08 00:33:13 -08:00
|
|
|
version = "2018.01.06";
|
2016-02-07 01:51:28 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-07-25 12:32:42 -07:00
|
|
|
repo = "cmst";
|
|
|
|
owner = "andrew-bibb";
|
|
|
|
rev = name;
|
2018-03-08 00:33:13 -08:00
|
|
|
sha256 = "1a3v7z75ghziymdj2w8603ql9nfac5q224ylfsqfxcqxw4bdip4r";
|
2014-09-12 04:51:20 -07:00
|
|
|
};
|
|
|
|
|
2017-12-17 18:32:00 -08:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2016-07-25 12:32:42 -07:00
|
|
|
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-09-12 04:51:20 -07:00
|
|
|
|
2017-12-17 18:32:00 -08:00
|
|
|
postPatch = ''
|
|
|
|
for f in $(find . -name \*.cpp -o -name \*.pri -o -name \*.pro); do
|
|
|
|
substituteInPlace $f --replace /etc $out/etc --replace /usr $out
|
|
|
|
done
|
2014-09-12 04:51:20 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "QT GUI for Connman with system tray icon";
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = https://github.com/andrew-bibb/cmst;
|
2014-09-12 04:51:20 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.matejc ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|