nixos/homer: init (#368594)
[NixPkgs.git] / pkgs / desktops / enlightenment / evisum / default.nix
blob63e8ab41780bc1d42e110be8453ad7b24bad651e
2   lib,
3   stdenv,
4   fetchurl,
5   meson,
6   ninja,
7   pkg-config,
8   efl,
9   directoryListingUpdater,
12 stdenv.mkDerivation rec {
13   pname = "evisum";
14   version = "0.6.1";
16   src = fetchurl {
17     url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
18     sha256 = "gy8guN4T4pCJCBAmfPQe2Ey7DITi4goU9ng2MmEtrbk=";
19   };
21   nativeBuildInputs = [
22     meson
23     ninja
24     pkg-config
25   ];
27   buildInputs = [
28     efl
29   ];
31   passthru.updateScript = directoryListingUpdater { };
33   meta = with lib; {
34     description = "System and process monitor written with EFL";
35     mainProgram = "evisum";
36     homepage = "https://www.enlightenment.org";
37     license = with licenses; [ isc ];
38     platforms = platforms.linux;
39     maintainers = teams.enlightenment.members;
40   };