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

32 lines
817 B
Nix
Raw Normal View History

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