nixpkgs/pkgs/tools/misc/lf/default.nix
Michael Weiss d7af685896 lf: 2018-03-19 -> 1
The first non-nightly release (r1).
2018-03-23 16:50:54 +01:00

45 lines
1.4 KiB
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "lf-${version}";
version = "1";
src = fetchFromGitHub {
owner = "gokcehan";
repo = "lf";
rev = "r${version}";
sha256 = "0mq83m7mvavd0dzhk8g6ffldy57i22n0846yzqnlz733chiy3anz";
};
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=${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 ];
};
}