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";
|
2020-10-10 18:44:00 +01:00
|
|
|
version = "17";
|
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}";
|
2020-10-10 18:44:00 +01:00
|
|
|
sha256 = "0hs70hbbwz9kbbf13l2v32yv70n4aw8sz7rky82qdcqcpnpisjq8";
|
2016-10-07 12:43:18 +01:00
|
|
|
};
|
|
|
|
|
2020-10-10 18:44:00 +01:00
|
|
|
vendorSha256 = "1xjanlq67b6n07pha6ljgnl3n2ks4x3albvca317l68cvjiw3shs";
|
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;
|
2016-10-07 12:43:18 +01:00
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
2020-07-26 10:08:37 +01:00
|
|
|
}
|