croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / by-name / ff / fff / package.nix
blobcd6ffddfce5ec1d43d30b7fc3492d1b8d05fd0bd
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   makeWrapper,
6   bashInteractive,
7   xdg-utils,
8   file,
9   coreutils,
10   w3m,
11   xdotool,
14 stdenv.mkDerivation rec {
15   pname = "fff";
16   version = "2.2";
18   src = fetchFromGitHub {
19     owner = "dylanaraps";
20     repo = pname;
21     rev = version;
22     sha256 = "14ymdw6l6phnil0xf1frd5kgznaiwppcic0v4hb61s1zpf4wrshg";
23   };
25   pathAdd = lib.makeSearchPath "bin" ([
26     xdg-utils
27     file
28     coreutils
29     w3m
30     xdotool
31   ]);
33   nativeBuildInputs = [ makeWrapper ];
34   buildInputs = [ bashInteractive ];
35   dontBuild = true;
37   makeFlags = [ "PREFIX=$(out)" ];
39   postInstall = ''
40     wrapProgram "$out/bin/fff" --prefix PATH : $pathAdd
41   '';
43   meta = with lib; {
44     description = "Fucking Fast File-Manager";
45     mainProgram = "fff";
46     homepage = "https://github.com/dylanaraps/fff";
47     license = licenses.mit;
48     maintainers = [ ];
49     platforms = platforms.all;
50   };