Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
970 B
Nix
51 lines
970 B
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
fetchFromGitHub,
|
|
qmake,
|
|
qtbase,
|
|
qttools,
|
|
gitUpdater,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "cmst";
|
|
version = "2023.03.14";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "cmst";
|
|
owner = "andrew-bibb";
|
|
rev = "${pname}-${version}";
|
|
sha256 = "sha256-yTqPxywPbtxTy1PPG+Mq64u8MrB27fEdmt1B0pn0BVk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
qmake
|
|
qttools
|
|
];
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
postPatch = ''
|
|
for f in $(find . -name \*.cpp -o -name \*.pri -o -name \*.pro); do
|
|
substituteInPlace $f --replace /etc $out/etc --replace /usr $out
|
|
done
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
rev-prefix = "${pname}-";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "QT GUI for Connman with system tray icon";
|
|
mainProgram = "cmst";
|
|
homepage = "https://github.com/andrew-bibb/cmst";
|
|
maintainers = with maintainers; [
|
|
matejc
|
|
romildo
|
|
];
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
};
|
|
}
|