nixpkgs/pkgs/desktops/enlightenment/evisum/default.nix

30 lines
674 B
Nix
Raw Normal View History

2020-09-14 21:12:42 +01:00
{ stdenv, fetchurl, meson, ninja, pkg-config, efl }:
stdenv.mkDerivation rec {
pname = "evisum";
2020-11-27 13:52:08 +00:00
version = "0.5.8";
2020-09-14 21:12:42 +01:00
src = fetchurl {
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
2020-11-27 13:52:08 +00:00
sha256 = "0cg4vqd069h89k3wrvl550p29y3yzbdnvii58gwc8rghwym621jx";
2020-09-14 21:12:42 +01:00
};
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 ];
};
}