30 lines
674 B
Nix
30 lines
674 B
Nix
|
{ stdenv, fetchurl, meson, ninja, pkg-config, efl }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "evisum";
|
||
|
version = "0.5.6";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
|
||
|
sha256 = "1l8pym7738kncvic5ga03sj9d5igigvmcxa9lbg47z2yvdjwzv97";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
meson
|
||
|
ninja
|
||
|
pkg-config
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
efl
|
||
|
];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "System and process monitor written with EFL";
|
||
|
homepage = "https://www.enlightenment.org";
|
||
|
license = with licenses; [ isc ];
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = with maintainers; [ romildo ];
|
||
|
};
|
||
|
}
|