nixpkgs/pkgs/tools/misc/lf/default.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

2020-04-14 20:08:59 +00:00
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
buildGoModule rec {
pname = "lf";
2021-02-28 13:02:13 +00:00
version = "21";
src = fetchFromGitHub {
owner = "gokcehan";
repo = "lf";
rev = "r${version}";
2021-02-28 13:02:13 +00:00
sha256 = "0j7c21lsgcc39ng9ni94y3zfcqwyf9jc52fi8mcpkp0lpcx5ava9";
};
2021-02-28 13:02:13 +00:00
vendorSha256 = "15fl9v69wkzwzpq6x4xhcd5g6xyck3mlpbz1bbb61l75jjzg913m";
2020-04-14 20:08:59 +00:00
nativeBuildInputs = [ installShellFiles ];
2020-08-13 08:49:07 +00:00
buildFlagsArray = [ "-ldflags=-s -w -X main.gVersion=r${version}" ];
2018-07-19 20:27:40 +00:00
postInstall = ''
2020-04-13 16:32:09 +00:00
install -D --mode=444 lf.desktop $out/share/applications/lf.desktop
2020-04-14 20:08:59 +00:00
installManPage lf.1
installShellCompletion etc/lf.{zsh,fish}
2018-07-19 20:27:40 +00:00
'';
meta = with lib; {
description = "A terminal file manager written in Go and heavily inspired by ranger";
longDescription = ''
lf (as in "list files") is a terminal file manager written in Go. It is
heavily inspired by ranger with some missing and extra features. Some of
the missing features are deliberately omitted since it is better if they
are handled by external tools.
'';
homepage = "https://godoc.org/github.com/gokcehan/lf";
2020-04-13 16:32:09 +00:00
changelog = "https://github.com/gokcehan/lf/releases/tag/r${version}";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
2020-07-26 09:08:37 +00:00
}