3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/clifm/default.nix

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";
2021-12-19 05:14:11 +00:00
version = "1.3";
2021-05-31 09:04:36 +01:00
src = fetchFromGitHub {
owner = "leo-arch";
repo = pname;
rev = "v${version}";
2021-12-19 05:14:11 +00:00
sha256 = "sha256-nYBGM3gUj1NGrxNLt0xpNl00cgS2Ecs3kYjZapiJT48=";
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;
};
}