3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/file-managers/clifm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
812 B
Nix
Raw Normal View History

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;
};
}