commit 15d1ad852883708247362ab8fcdfca762d12c32d
parent 5e2fddcc81dfe217c74f3a8ccbed0b1c9d65510a
Author: Nikolay Korotkiy <sikmir@gmail.com>
Date: Fri, 7 May 2021 20:30:54 +0300
Fix klogg-bin
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/pkgs/applications/misc/klogg/bin.nix b/pkgs/applications/misc/klogg/bin.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchfromgh, appimageTools, undmg, sources }:
+{ lib, stdenv, fetchfromgh, appimageTools, undmg }:
let
inherit (stdenv.hostPlatform) system;
throwSystem = throw "Unsupported system: ${system}";
@@ -28,7 +28,8 @@ let
};
meta = with lib; {
- inherit (sources.klogg) description homepage;
+ description = "A fast, advanced log explorer based on glogg project";
+ homepage = "https://klogg.filimonov.dev/";
license = licenses.gpl3Plus;
platforms = [ "x86_64-linux" "x86_64-darwin" ];
maintainers = [ maintainers.sikmir ];