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

34 lines
838 B
Nix
Raw Normal View History

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