30 lines
672 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, meson, ninja, pkg-config, efl }:
2020-09-14 17:12:42 -03:00
stdenv.mkDerivation rec {
pname = "evisum";
2021-02-04 05:58:25 +00:00
version = "0.5.10";
2020-09-14 17:12:42 -03:00
src = fetchurl {
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
2021-02-04 05:58:25 +00:00
sha256 = "sha256-kCO55UvQnRQhXLRqeJr6SN9FiTeKkh3P7QFkJe+GXjY=";
2020-09-14 17:12:42 -03:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
efl
];
meta = with lib; {
2020-09-14 17:12:42 -03: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 ];
};
}