2020-04-14 21:08:59 +01:00
|
|
|
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
|
2016-10-07 12:43:18 +01:00
|
|
|
|
2019-04-21 10:44:34 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lf";
|
2021-04-14 17:12:52 +01:00
|
|
|
version = "22";
|
2016-10-07 12:43:18 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gokcehan";
|
|
|
|
repo = "lf";
|
2018-03-23 14:26:45 +00:00
|
|
|
rev = "r${version}";
|
2021-04-14 17:12:52 +01:00
|
|
|
sha256 = "10zmac9xza2v7l13zkavmc34ppcpmb82v8dxvrv4ggm261ns1abr";
|
2016-10-07 12:43:18 +01:00
|
|
|
};
|
|
|
|
|
2021-04-14 17:12:52 +01:00
|
|
|
vendorSha256 = "1yjsig2x6zrxdjnds6nqqq3r3g5lq8g9dvmz60nbifqhcx112bcw";
|
2020-08-04 01:26:27 +01:00
|
|
|
|
2020-04-14 21:08:59 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2020-08-13 09:49:07 +01:00
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X main.gVersion=r${version}" ];
|
2018-03-23 14:26:45 +00:00
|
|
|
|
2018-07-19 21:27:40 +01:00
|
|
|
postInstall = ''
|
2020-04-13 17:32:09 +01:00
|
|
|
install -D --mode=444 lf.desktop $out/share/applications/lf.desktop
|
2020-04-14 21:08:59 +01:00
|
|
|
installManPage lf.1
|
|
|
|
installShellCompletion etc/lf.{zsh,fish}
|
2018-07-19 21:27:40 +01:00
|
|
|
'';
|
|
|
|
|
2019-04-21 10:44:34 +01:00
|
|
|
meta = with lib; {
|
2016-10-07 12:43:18 +01:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://godoc.org/github.com/gokcehan/lf";
|
2020-04-13 17:32:09 +01:00
|
|
|
changelog = "https://github.com/gokcehan/lf/releases/tag/r${version}";
|
2016-10-07 12:43:18 +01:00
|
|
|
license = licenses.mit;
|
2018-06-19 13:41:26 +01:00
|
|
|
platforms = platforms.unix;
|
2021-04-14 17:17:18 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2016-10-07 12:43:18 +01:00
|
|
|
};
|
2020-07-26 10:08:37 +01:00
|
|
|
}
|