My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/tools/networking/cmst/default.nix

32 lines
805 B

{ mkDerivation, lib, fetchFromGitHub, qmake, qtbase, qttools }:
mkDerivation rec {
pname = "cmst";
version = "2022.01.05";
src = fetchFromGitHub {
repo = "cmst";
owner = "andrew-bibb";
rev = "${pname}-${version}";
sha256 = "0d05vrsjm30q22wpxicnxhjzrjq5kxjhpb6262m46sgkr8yipfhr";
};
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
'';
meta = {
description = "QT GUI for Connman with system tray icon";
homepage = "https://github.com/andrew-bibb/cmst";
maintainers = [ lib.maintainers.matejc ];
platforms = lib.platforms.linux;
license = lib.licenses.mit;
};
}