nixpkgs/pkgs/tools/misc/lf/default.nix

51 lines
1.7 KiB
Nix
Raw Normal View History

2020-04-14 20:08:59 +00:00
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
buildGoModule rec {
pname = "lf";
2020-07-26 09:08:37 +00:00
version = "15";
src = fetchFromGitHub {
owner = "gokcehan";
repo = "lf";
rev = "r${version}";
2020-07-26 09:08:37 +00:00
sha256 = "1fjwkng6fnbl6dlicbxj0z92hl9xggni5zfi3nsxn3fa6rmzbiay";
};
2020-07-26 09:08:37 +00:00
vendorSha256 = "10na3jzvln353ygcvbhj4243yr83skw5zf3r2n8p6d7i83i86c8w";
2020-04-14 20:08:59 +00:00
nativeBuildInputs = [ installShellFiles ];
# TODO: Setting buildFlags probably isn't working properly. I've tried a few
# variants, e.g.:
# - buildFlags = [ "-ldflags" "\"-s" "-w"" ""-X 'main.gVersion=${version}'\"" ];
# - buildFlags = [ "-ldflags" "\\\"-X" "${goPackagePath}/main.gVersion=${version}\\\"" ];
# Override the build phase (to set buildFlags):
buildPhase = ''
runHook preBuild
runHook renameImports
2018-04-06 23:55:19 +00:00
go install -ldflags="-s -w -X main.gVersion=r${version}"
runHook postBuild
'';
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
installShellCompletion etc/lf.{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;
maintainers = with maintainers; [ primeos ];
};
2020-07-26 09:08:37 +00:00
}