2019-08-30 01:15:23 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, qmake, qtbase }:
|
2014-09-12 12:51:20 +01:00
|
|
|
|
2019-08-30 01:15:23 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cmst";
|
2019-01-28 20:42:51 +00:00
|
|
|
version = "2019.01.13";
|
2016-02-07 09:51:28 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-07-25 20:32:42 +01:00
|
|
|
repo = "cmst";
|
|
|
|
owner = "andrew-bibb";
|
2019-08-15 13:41:18 +01:00
|
|
|
rev = "${pname}-${version}";
|
2019-01-28 20:42:51 +00:00
|
|
|
sha256 = "13739f0ddld34dcqlfhylzn1zqz5a7jbp4a4id7gj7pcxjx1lafh";
|
2014-09-12 12:51:20 +01:00
|
|
|
};
|
|
|
|
|
2017-12-18 02:32:00 +00:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2016-07-25 20:32:42 +01:00
|
|
|
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-09-12 12:51:20 +01:00
|
|
|
|
2017-12-18 02:32:00 +00: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 12:51:20 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "QT GUI for Connman with system tray icon";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/andrew-bibb/cmst";
|
2019-08-30 01:15:23 +01:00
|
|
|
maintainers = [ lib.maintainers.matejc ];
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
license = lib.licenses.mit;
|
2014-09-12 12:51:20 +01:00
|
|
|
};
|
|
|
|
}
|