ae91cbe6cc
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
29 lines
672 B
Nix
29 lines
672 B
Nix
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, efl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "evisum";
|
|
version = "0.5.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-kCO55UvQnRQhXLRqeJr6SN9FiTeKkh3P7QFkJe+GXjY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
efl
|
|
];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|