evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ff / fff / package.nix
blobd7bb50f59e43f6919bb68a1e4c4cbf0ce89a3b50
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     mainProgram = "fff";
29     homepage = "https://github.com/dylanaraps/fff";
30     license = licenses.mit;
31     maintainers = [ ];
32     platforms = platforms.all;
33   };