mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "lf-${version}";
|
|
version = "6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gokcehan";
|
|
repo = "lf";
|
|
rev = "r${version}";
|
|
sha256 = "1wgmmz1gvphkz0rnjyvgn3860yzvxwackb1dwqbgjrqsqy8ba01z";
|
|
};
|
|
|
|
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.unix;
|
|
maintainers = with maintainers; [ primeos ];
|
|
};
|
|
}
|