about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/clifm/default.nix
blob: 7fc130700aa92765ec46eabe7a28fed69e73684b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, lib, fetchFromGitHub, libcap, acl, file, readline }:

stdenv.mkDerivation rec {
  pname = "clifm";
  version = "1.1";

  src = fetchFromGitHub {
    owner = "leo-arch";
    repo = pname;
    rev = "v${version}";
    sha256 = "0mf9lrq0l532vyf4ycsikrw8imn4gkavyn3cr42nhjsr1drygrp8";
  };

  buildInputs = [ libcap acl file readline ];

  makeFlags = [
    "INSTALLPREFIX=${placeholder "out"}/bin"
    "DESKTOPPREFIX=${placeholder "out"}/share"
  ];

  preInstall = ''
    mkdir -p $out/bin $out/share
  '';

  enableParallelBuilding = true;

  meta = with lib; {
    homepage = "https://github.com/leo-arch/clifm";
    description = "CliFM is a CLI-based, shell-like, and non-curses terminal file manager written in C: simple, fast, extensible, and lightweight as hell";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ vonfry ];
    platforms = platforms.unix;
  };
}