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

30 lines
672 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, meson, ninja, pkg-config, efl }:
2020-09-14 22:12:42 +02:00
stdenv.mkDerivation rec {
pname = "evisum";
2021-04-28 07:21:15 +02:00
version = "0.5.13";
2020-09-14 22:12:42 +02:00
src = fetchurl {
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
2021-04-28 07:21:15 +02:00
sha256 = "sha256-TMVxx7D9wdujyN6PcbIxC8M6zby5myvxO9AqolrcWOY=";
2020-09-14 22:12:42 +02:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
efl
];
meta = with lib; {
2020-09-14 22:12:42 +02: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 ];
};
}