Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 41 lines 778 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 meson, 6 ninja, 7 pkg-config, 8 efl, 9 directoryListingUpdater, 10}: 11 12stdenv.mkDerivation rec { 13 pname = "evisum"; 14 version = "0.6.4"; 15 16 src = fetchurl { 17 url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz"; 18 sha256 = "hlyotWUTfDKkEjAvDrlE7xYEMG7XksCg3X9Xksdca/g="; 19 }; 20 21 nativeBuildInputs = [ 22 meson 23 ninja 24 pkg-config 25 ]; 26 27 buildInputs = [ 28 efl 29 ]; 30 31 passthru.updateScript = directoryListingUpdater { }; 32 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 teams = [ teams.enlightenment ]; 40 }; 41}