main
 1{
 2  lib,
 3  rustPlatform,
 4  fetchFromGitHub,
 5}:
 6rustPlatform.buildRustPackage {
 7  pname = "elio";
 8  version = "1.11.1";
 9
10  src = fetchFromGitHub {
11    owner = "elio-fm";
12    repo = "elio";
13    rev = "754f8457b12608025e5eb6051a749e7ca8c89f8e";
14    hash = "sha256-SrYRn+JZXSy7F3Jfx1u2ht/lL31FG+BtxzuIu4kHeek=";
15  };
16
17  cargoHash = "sha256-W7C3e8pRCPoorxQhs1jkpnTKNn3oTEOhI1tG3HZFxpw=";
18  doCheck = false;
19
20  meta = {
21    description = "Snappy, batteries-included terminal file manager with rich previews, inline images, bulk actions, and trash support";
22    homepage = "https://github.com/elio-fm/elio";
23    license = lib.licenses.mit;
24    mainProgram = "elio";
25    platforms = lib.platforms.linux;
26  };
27}