2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, efl }:
|
2020-09-14 21:12:42 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "evisum";
|
2021-02-12 06:16:53 +00:00
|
|
|
version = "0.5.11";
|
2020-09-14 21:12:42 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
|
2021-02-12 06:16:53 +00:00
|
|
|
sha256 = "sha256-jCOYnG/+xz9qK6npOPT+tw1tp/K0QaFCmsBRO9J4bjE=";
|
2020-09-14 21:12:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
efl
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-09-14 21:12:42 +01:00
|
|
|
description = "System and process monitor written with EFL";
|
|
|
|
homepage = "https://www.enlightenment.org";
|
|
|
|
license = with licenses; [ isc ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|