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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
758 B
Nix
Raw Normal View History

2021-12-27 22:18:04 +00:00
{ lib
, stdenv
, fetchurl
, meson
, ninja
, pkg-config
, efl
, directoryListingUpdater
2021-12-27 22:18:04 +00:00
}:
2020-09-14 20:12:42 +00:00
stdenv.mkDerivation rec {
pname = "evisum";
2021-12-27 22:18:04 +00:00
version = "0.6.0";
2020-09-14 20:12:42 +00:00
src = fetchurl {
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
2021-12-27 22:18:04 +00:00
sha256 = "1ip3rmp0hcn0pk6lv089cayx18p1b2wycgvwpnf7ghbdxg7n4q15";
2020-09-14 20:12:42 +00:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
efl
];
passthru.updateScript = directoryListingUpdater { };
meta = with lib; {
2020-09-14 20:12:42 +00:00
description = "System and process monitor written with EFL";
homepage = "https://www.enlightenment.org";
license = with licenses; [ isc ];
platforms = platforms.linux;
2022-04-14 14:27:30 +00:00
maintainers = teams.enlightenment.members;
2020-09-14 20:12:42 +00:00
};
}