2022-01-03 16:56:52 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
|
|
|
, efl
|
2022-10-30 15:09:59 +00:00
|
|
|
, directoryListingUpdater
|
2022-01-03 16:56:52 +00:00
|
|
|
}:
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "evisum";
|
2022-01-03 16:56:52 +00:00
|
|
|
version = "0.6.0";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
|
2022-01-03 16:56:52 +00:00
|
|
|
sha256 = "1ip3rmp0hcn0pk6lv089cayx18p1b2wycgvwpnf7ghbdxg7n4q15";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
efl
|
|
|
|
];
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
passthru.updateScript = directoryListingUpdater { };
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-09-25 04:45:31 +00:00
|
|
|
description = "System and process monitor written with EFL";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "evisum";
|
2020-09-25 04:45:31 +00:00
|
|
|
homepage = "https://www.enlightenment.org";
|
|
|
|
license = with licenses; [ isc ];
|
|
|
|
platforms = platforms.linux;
|
2022-04-27 09:35:20 +00:00
|
|
|
maintainers = teams.enlightenment.members;
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
}
|