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

49 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "lf-${version}";
2019-03-04 19:49:22 +00:00
version = "11";
src = fetchFromGitHub {
owner = "gokcehan";
repo = "lf";
rev = "r${version}";
2019-03-04 19:49:22 +00:00
sha256 = "13622sx6xmbm8gf38dn8y8mkfnlbpamg4hmzsy9jnzg4h8qbjm6b";
};
2017-02-10 02:16:10 +00:00
goPackagePath = "github.com/gokcehan/lf";
goDeps = ./deps.nix;
# 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
cd go/src/${goPackagePath}
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 = ''
install -D --mode=444 lf.1 $out/share/man/man1/lf.1
'';
meta = with stdenv.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;
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
}