2020-05-01 20:22:16 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, efl, python3Packages, dbus, makeWrapper }:
|
2016-08-22 15:45:29 -07:00
|
|
|
|
2014-09-15 12:54:02 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "econnman";
|
2014-09-15 12:54:02 -07:00
|
|
|
version = "1.1";
|
2016-08-22 15:45:29 -07:00
|
|
|
|
2014-09-15 12:54:02 -07:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://download.enlightenment.org/rel/apps/econnman/${pname}-${version}.tar.gz";
|
2014-09-15 12:54:02 -07:00
|
|
|
sha256 = "057pwwavlvrrq26bncqnfrf449zzaim0zq717xv86av4n940gwv0";
|
|
|
|
};
|
|
|
|
|
2020-05-01 20:22:16 -07:00
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig python3Packages.wrapPython ];
|
2016-08-22 15:45:29 -07:00
|
|
|
|
2020-05-01 20:22:16 -07:00
|
|
|
buildInputs = [ efl python3Packages.python dbus ];
|
2016-08-22 15:45:29 -07:00
|
|
|
|
2020-05-01 20:22:16 -07:00
|
|
|
pythonPath = [ python3Packages.pythonefl python3Packages.dbus-python ];
|
2016-08-22 15:45:29 -07:00
|
|
|
|
2014-09-15 12:54:02 -07:00
|
|
|
postInstall = ''
|
2016-03-11 15:54:29 -08:00
|
|
|
wrapPythonPrograms
|
2014-09-15 12:54:02 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2015-04-30 08:05:14 -07:00
|
|
|
description = "A user interface for the connman network connection manager";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://enlightenment.org/";
|
2014-09-15 12:54:02 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
2019-10-26 06:52:09 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
|
2014-09-15 12:54:02 -07:00
|
|
|
};
|
|
|
|
}
|