ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
37 lines
929 B
Nix
37 lines
929 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;
|
|
};
|
|
}
|