Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / fff / default.nix
bloba3f791940cbf5a8e7ab0f1fc0b2e111abb52c1b7
1 { lib, stdenv, fetchFromGitHub, makeWrapper, bashInteractive, xdg-utils, file, coreutils, w3m, xdotool }:
3 stdenv.mkDerivation rec {
4   pname = "fff";
5   version = "2.2";
7   src = fetchFromGitHub {
8     owner = "dylanaraps";
9     repo = pname;
10     rev = version;
11     sha256 = "14ymdw6l6phnil0xf1frd5kgznaiwppcic0v4hb61s1zpf4wrshg";
12   };
14   pathAdd = lib.makeSearchPath "bin" ([ xdg-utils file coreutils w3m xdotool ]);
16   nativeBuildInputs = [ makeWrapper ];
17   buildInputs = [ bashInteractive ];
18   dontBuild = true;
20   makeFlags = [ "PREFIX=$(out)" ];
22   postInstall = ''
23     wrapProgram "$out/bin/fff" --prefix PATH : $pathAdd
24   '';
26   meta = with lib; {
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;
32   };