2022-05-01 15:09:39 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, qmake, qtbase, qttools, gitUpdater }:
|
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";
|
2023-03-15 17:22:24 +00:00
|
|
|
version = "2023.03.14";
|
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}";
|
2023-03-15 17:22:24 +00:00
|
|
|
sha256 = "sha256-yTqPxywPbtxTy1PPG+Mq64u8MrB27fEdmt1B0pn0BVk=";
|
2014-09-12 12:51:20 +01:00
|
|
|
};
|
|
|
|
|
2021-12-29 19:02:11 +00:00
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
2016-07-25 20:32:42 +01:00
|
|
|
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
|
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
|
|
|
'';
|
|
|
|
|
2022-05-01 15:09:39 +01:00
|
|
|
passthru.updateScript = gitUpdater {
|
|
|
|
rev-prefix = "${pname}-";
|
|
|
|
};
|
|
|
|
|
2022-01-05 23:54:13 +00:00
|
|
|
meta = with lib; {
|
2014-09-12 12:51:20 +01:00
|
|
|
description = "QT GUI for Connman with system tray icon";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/andrew-bibb/cmst";
|
2022-01-05 23:54:13 +00:00
|
|
|
maintainers = with maintainers; [ matejc romildo ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.mit;
|
2014-09-12 12:51:20 +01:00
|
|
|
};
|
|
|
|
}
|