2022-10-27 11:57:22 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
2016-10-07 11:43:18 +00:00
|
|
|
|
2019-04-21 09:44:34 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "lf";
|
2022-12-26 07:33:33 +00:00
|
|
|
version = "28";
|
2016-10-07 11:43:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gokcehan";
|
|
|
|
repo = "lf";
|
2018-03-23 14:26:45 +00:00
|
|
|
rev = "r${version}";
|
2022-12-26 07:33:33 +00:00
|
|
|
hash = "sha256-VEXWjpdUP5Kabimp9kKoLR7/FlE39MAroRBl9au2TI8=";
|
2016-10-07 11:43:18 +00:00
|
|
|
};
|
|
|
|
|
2022-12-26 07:33:33 +00:00
|
|
|
vendorHash = "sha256-oIIyQbw42+B6T6Qn6nIV62Xr+8ms3tatfFI8ocYNr0A=";
|
2020-08-04 00:26:27 +00:00
|
|
|
|
2020-04-14 20:08:59 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2021-08-26 06:45:51 +00:00
|
|
|
ldflags = [ "-s" "-w" "-X main.gVersion=r${version}" ];
|
2018-03-23 14:26:45 +00:00
|
|
|
|
2022-10-27 11:57:22 +00:00
|
|
|
# Force the use of the pure-go implementation of the os/user library.
|
|
|
|
# Relevant issue: https://github.com/gokcehan/lf/issues/191
|
|
|
|
tags = lib.optionals (!stdenv.isDarwin) [ "osusergo" ];
|
|
|
|
|
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
|
2021-10-30 04:20:00 +00:00
|
|
|
installShellCompletion etc/lf.{bash,zsh,fish}
|
2018-07-19 20:27:40 +00:00
|
|
|
'';
|
|
|
|
|
2019-04-21 09:44:34 +00:00
|
|
|
meta = with lib; {
|
2016-10-07 11:43:18 +00: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 01:11:51 +00:00
|
|
|
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}";
|
2016-10-07 11:43:18 +00:00
|
|
|
license = licenses.mit;
|
2018-06-19 12:41:26 +00:00
|
|
|
platforms = platforms.unix;
|
2021-06-16 14:29:43 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2016-10-07 11:43:18 +00:00
|
|
|
};
|
2020-07-26 09:08:37 +00:00
|
|
|
}
|