2021-05-31 09:04:36 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, libcap, acl, file, readline }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "clifm";
|
2022-08-28 10:02:22 +01:00
|
|
|
version = "1.7";
|
2021-05-31 09:04:36 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "leo-arch";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-08-28 10:02:22 +01:00
|
|
|
sha256 = "sha256-7nMAaMLFLF5WuWgac9wdIvzRTTVpKRM7zB2tIlowBEE=";
|
2021-05-31 09:04:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libcap acl file readline ];
|
|
|
|
|
|
|
|
makeFlags = [
|
2021-12-19 05:14:11 +00:00
|
|
|
"DESTDIR=${placeholder "out"}"
|
|
|
|
"DATADIR=/share"
|
|
|
|
"PREFIX=/"
|
2021-05-31 09:04:36 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
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;
|
2021-12-19 05:14:11 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2021-05-31 09:04:36 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|