1 { lib, stdenv, fetchFromGitHub, makeWrapper, bashInteractive, xdg-utils, file, coreutils, w3m, xdotool }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "14ymdw6l6phnil0xf1frd5kgznaiwppcic0v4hb61s1zpf4wrshg";
14 pathAdd = lib.makeSearchPath "bin" ([ xdg-utils file coreutils w3m xdotool ]);
16 nativeBuildInputs = [ makeWrapper ];
17 buildInputs = [ bashInteractive ];
20 makeFlags = [ "PREFIX=$(out)" ];
23 wrapProgram "$out/bin/fff" --prefix PATH : $pathAdd
27 description = "Fucking Fast File-Manager";
28 homepage = "https://github.com/dylanaraps/fff";
29 license = licenses.mit;
30 maintainers = [ maintainers.tadeokondrak ];
31 platforms = platforms.all;