nixpkgs/pkgs/applications/file-managers/lf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
pname = "lf";
2022-12-26 07:33:33 +00:00
version = "28";
src = fetchFromGitHub {
owner = "gokcehan";
repo = "lf";
rev = "r${version}";
2022-12-26 07:33:33 +00:00
hash = "sha256-VEXWjpdUP5Kabimp9kKoLR7/FlE39MAroRBl9au2TI8=";
};
2022-12-26 07:33:33 +00:00
vendorHash = "sha256-oIIyQbw42+B6T6Qn6nIV62Xr+8ms3tatfFI8ocYNr0A=";
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}" ];
# 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
'';
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;
2021-06-16 14:29:43 +00:00
maintainers = with maintainers; [ dotlambda ];
};
2020-07-26 09:08:37 +00:00
}