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