2016-03-11 23:54:29 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, efl, elementary, python2Packages, dbus, makeWrapper }:
|
2014-09-15 20:54:02 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "econnman-${version}";
|
|
|
|
version = "1.1";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.enlightenment.org/rel/apps/econnman/${name}.tar.gz";
|
|
|
|
sha256 = "057pwwavlvrrq26bncqnfrf449zzaim0zq717xv86av4n940gwv0";
|
|
|
|
};
|
|
|
|
|
2016-03-11 23:54:29 +00:00
|
|
|
buildInputs = [ makeWrapper pkgconfig efl python2Packages.python python2Packages.wrapPython dbus ];
|
2016-08-16 21:51:21 +01:00
|
|
|
pythonPath = [ python2Packages.pythonefl python2Packages.dbus-python elementary ];
|
2014-09-15 20:54:02 +01:00
|
|
|
postInstall = ''
|
2016-03-11 23:54:29 +00:00
|
|
|
wrapPythonPrograms
|
2014-09-15 20:54:02 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2015-04-30 16:05:14 +01:00
|
|
|
description = "A user interface for the connman network connection manager";
|
2014-09-15 20:54:02 +01:00
|
|
|
homepage = http://enlightenment.org/;
|
2015-05-16 15:42:40 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
|
2014-09-15 20:54:02 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
|
|
};
|
|
|
|
}
|