29 lines
674 B
Nix
29 lines
674 B
Nix
{ stdenv, fetchurl, meson, ninja, pkg-config, efl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "evisum";
|
|
version = "0.5.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "0pm63n3rls8vkjv3awq0f3zlqk33ddql3g0rl2bc46n48g2mcmbd";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|