nixpkgs/pkgs/tools/networking/cmst/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
930 B
Nix
Raw Normal View History

2022-05-01 16:09:39 +02:00
{ mkDerivation, lib, fetchFromGitHub, qmake, qtbase, qttools, gitUpdater }:
2014-09-12 13:51:20 +02:00
2019-08-30 02:15:23 +02:00
mkDerivation rec {
pname = "cmst";
2022-05-01 16:10:24 +02:00
version = "2022.05.01";
2016-02-07 10:51:28 +01:00
src = fetchFromGitHub {
repo = "cmst";
owner = "andrew-bibb";
rev = "${pname}-${version}";
2022-05-01 16:10:24 +02:00
sha256 = "sha256-d3uvJf1tI9vXyq1eIbHkKrinBuPkYoBUcusHsJmSqMA=";
2014-09-12 13:51:20 +02:00
};
2021-12-29 20:02:11 +01:00
nativeBuildInputs = [ qmake qttools ];
buildInputs = [ qtbase ];
2017-12-18 03:32:00 +01: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 13:51:20 +02:00
'';
2022-05-01 16:09:39 +02:00
passthru.updateScript = gitUpdater {
inherit pname version;
rev-prefix = "${pname}-";
};
2022-01-06 00:54:13 +01:00
meta = with lib; {
2014-09-12 13:51:20 +02:00
description = "QT GUI for Connman with system tray icon";
homepage = "https://github.com/andrew-bibb/cmst";
2022-01-06 00:54:13 +01:00
maintainers = with maintainers; [ matejc romildo ];
platforms = platforms.linux;
license = licenses.mit;
2014-09-12 13:51:20 +02:00
};
}