summaryrefslogtreecommitdiff
path: root/pkgs/tools/misc/lf/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/lf/default.nix')
-rw-r--r--pkgs/tools/misc/lf/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/tools/misc/lf/default.nix b/pkgs/tools/misc/lf/default.nix
new file mode 100644
index 000000000000..80b8457f07f4
--- /dev/null
+++ b/pkgs/tools/misc/lf/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "lf-unstable-${version}";
+ version = "2016-10-02";
+
+ goPackagePath = "github.com/gokcehan/lf";
+
+ src = fetchFromGitHub {
+ owner = "gokcehan";
+ repo = "lf";
+ rev = "7a851f6c720380a6b9f715542906a56334e7e98b"; # nightly
+ sha256 = "0hdxcibly3algz0hgy65xr3dxchf4aarpxdgxsgc67m1knizksjr";
+ };
+
+ goDeps = ./deps.nix;
+
+ 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 ];
+ };
+}