2016-10-07 13:43:18 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2018-03-23 15:26:45 +01:00
|
|
|
name = "lf-${version}";
|
2018-07-19 02:08:04 +02:00
|
|
|
version = "7";
|
2016-10-07 13:43:18 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gokcehan";
|
|
|
|
repo = "lf";
|
2018-03-23 15:26:45 +01:00
|
|
|
rev = "r${version}";
|
2018-07-19 02:08:04 +02:00
|
|
|
sha256 = "11n5svxhc2781ss7v15w40ac81mchhcvkszhb2r70zry7sa15li1";
|
2016-10-07 13:43:18 +02:00
|
|
|
};
|
|
|
|
|
2017-02-10 03:16:10 +01:00
|
|
|
goPackagePath = "github.com/gokcehan/lf";
|
2016-10-07 13:43:18 +02:00
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
2018-03-23 15:26:45 +01:00
|
|
|
# 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-07 01:55:19 +02:00
|
|
|
go install -ldflags="-s -w -X main.gVersion=r${version}"
|
2018-03-23 15:26:45 +01:00
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
2016-10-07 13:43:18 +02:00
|
|
|
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.
|
|
|
|
'';
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://godoc.org/github.com/gokcehan/lf;
|
2016-10-07 13:43:18 +02:00
|
|
|
license = licenses.mit;
|
2018-06-19 14:41:26 +02:00
|
|
|
platforms = platforms.unix;
|
2016-10-07 13:43:18 +02:00
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
}
|