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

34 lines
830 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, qmake, qtbase }:
2014-09-12 11:51:20 +00:00
stdenv.mkDerivation rec {
name = "cmst-${version}";
version = "2019.01.13";
2016-02-07 09:51:28 +00:00
src = fetchFromGitHub {
repo = "cmst";
owner = "andrew-bibb";
rev = name;
sha256 = "13739f0ddld34dcqlfhylzn1zqz5a7jbp4a4id7gj7pcxjx1lafh";
2014-09-12 11:51:20 +00:00
};
2017-12-18 02:32:00 +00:00
nativeBuildInputs = [ qmake ];
buildInputs = [ qtbase ];
enableParallelBuilding = true;
2014-09-12 11:51:20 +00:00
2017-12-18 02:32:00 +00: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 11:51:20 +00:00
'';
meta = {
description = "QT GUI for Connman with system tray icon";
homepage = https://github.com/andrew-bibb/cmst;
2014-09-12 11:51:20 +00:00
maintainers = [ stdenv.lib.maintainers.matejc ];
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.mit;
};
}