3
0
Fork 0
forked from mirrors/nixpkgs

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