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-04-13 17:32:09 +01:00
|
|
|
version = "14";
|
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-04-13 17:32:09 +01:00
|
|
|
sha256 = "0kl9yrgph1i0jbxhlg3k0411436w80xw1s8dzd7v7h2raygkb4is";
|
2016-10-07 12:43:18 +01:00
|
|
|
};
|
|
|
|
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = "1zb2z3c2w4gnq9cjczg1y7r7jg4mlrm2hsb12dqd9w8mh44rvr37";
|
2016-10-07 12:43:18 +01:00
|
|
|
|
2020-04-14 21:08:59 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2018-03-23 14:26:45 +00:00
|
|
|
# TODO: Setting buildFlags probably isn't working properly. I've tried a few
|
|
|
|
# variants, e.g.:
|
2019-10-27 13:03:25 +00:00
|
|
|
# - buildFlags = [ "-ldflags" "\"-s" "-w"" ""-X 'main.gVersion=${version}'\"" ];
|
|
|
|
# - buildFlags = [ "-ldflags" "\\\"-X" "${goPackagePath}/main.gVersion=${version}\\\"" ];
|
2018-03-23 14:26:45 +00:00
|
|
|
# Override the build phase (to set buildFlags):
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
runHook renameImports
|
2018-04-07 00:55:19 +01:00
|
|
|
go install -ldflags="-s -w -X main.gVersion=r${version}"
|
2018-03-23 14:26:45 +00:00
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
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-05-01 02:59:00 +01:00
|
|
|
}
|