nixpkgs/pkgs/tools/misc/lf/default.nix
Michael Weiss b6539403d7 lf: 3 -> 4
2018-05-20 22:18:21 +02:00

45 lines
1.4 KiB
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "lf-${version}";
version = "4";
src = fetchFromGitHub {
owner = "gokcehan";
repo = "lf";
rev = "r${version}";
sha256 = "0wvx5hhkj3l68xjcr0i5lk623zi3si79hhvwi6mw9s52i43irr31";
};
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}
go install -ldflags="-s -w -X main.gVersion=r${version}"
runHook postBuild
'';
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.linux;
maintainers = with maintainers; [ primeos ];
};
}