lf: 13 -> 14

This commit is contained in:
Michael Weiss 2020-04-13 18:32:09 +02:00
parent 326756bbeb
commit 806b2997a9
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

View File

@ -2,16 +2,16 @@
buildGoModule rec { buildGoModule rec {
pname = "lf"; pname = "lf";
version = "13"; version = "14";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "gokcehan"; owner = "gokcehan";
repo = "lf"; repo = "lf";
rev = "r${version}"; rev = "r${version}";
sha256 = "1ld3q75v8rvp169w5p85z1vznqs9bhck6bm2f6fykxx16hmpb6ga"; sha256 = "0kl9yrgph1i0jbxhlg3k0411436w80xw1s8dzd7v7h2raygkb4is";
}; };
modSha256 = "14fvn8yjm9cnpsmzgxw2dypr3h8h36mxrbk7zma42w8rsp46jpz7"; modSha256 = "1c6c6qg8yrhdhqsnqj3jw3x2hi8vrhfm47cp9xlkfnjfrz3nk6jp";
# TODO: Setting buildFlags probably isn't working properly. I've tried a few # TODO: Setting buildFlags probably isn't working properly. I've tried a few
# variants, e.g.: # variants, e.g.:
@ -27,6 +27,7 @@ buildGoModule rec {
postInstall = '' postInstall = ''
install -D --mode=444 lf.1 $out/share/man/man1/lf.1 install -D --mode=444 lf.1 $out/share/man/man1/lf.1
install -D --mode=444 lf.desktop $out/share/applications/lf.desktop
''; '';
meta = with lib; { meta = with lib; {
@ -38,6 +39,7 @@ buildGoModule rec {
are handled by external tools. are handled by external tools.
''; '';
homepage = "https://godoc.org/github.com/gokcehan/lf"; homepage = "https://godoc.org/github.com/gokcehan/lf";
changelog = "https://github.com/gokcehan/lf/releases/tag/r${version}";
license = licenses.mit; license = licenses.mit;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ primeos ]; maintainers = with maintainers; [ primeos ];