nixpkgs/pkgs/tools/networking/cmst/default.nix
2023-03-15 17:22:24 +00:00

36 lines
903 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";
homepage = "https://github.com/andrew-bibb/cmst";
maintainers = with maintainers; [ matejc romildo ];
platforms = platforms.linux;
license = licenses.mit;
};
}