biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / file-managers / clifm / default.nix
blob026c6f52d020780772580c1aa03f3e60a7d840cb
2   stdenv,
3   lib,
4   fetchFromGitHub,
5   libcap,
6   acl,
7   file,
8   readline,
9   python3,
12 stdenv.mkDerivation rec {
13   pname = "clifm";
14   version = "1.18";
16   src = fetchFromGitHub {
17     owner = "leo-arch";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-tgCGZCLCWcF7ktXqDHjoUkeVqxg6QVOkZb7pbk3nA+U=";
21   };
23   buildInputs = [
24     libcap
25     acl
26     file
27     readline
28     python3
29   ];
31   makeFlags = [
32     "PREFIX=${placeholder "out"}"
33     "DATADIR=${placeholder "out"}/share"
34   ];
36   enableParallelBuilding = true;
38   meta = with lib; {
39     homepage = "https://github.com/leo-arch/clifm";
40     description = "CliFM is a CLI-based, shell-like, and non-curses terminal file manager written in C: simple, fast, extensible, and lightweight as hell";
41     license = licenses.gpl2Plus;
42     maintainers = with maintainers; [ nadir-ishiguro ];
43     platforms = platforms.unix;
44     mainProgram = "clifm";
45   };