From 375f5c0b2b7b2cf01d2725ed532cf74c52ef324d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristoffer=20Plagborg=20Bak=20S=C3=B8rensen?= Date: Mon, 1 Jun 2026 09:11:01 +0200 Subject: [PATCH] yaziPlugins.yatline-created-time: init at 0-unstable-2025-09-04 --- .../plugins/yatline-created-time/default.nix | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/by-name/ya/yazi/plugins/yatline-created-time/default.nix diff --git a/pkgs/by-name/ya/yazi/plugins/yatline-created-time/default.nix b/pkgs/by-name/ya/yazi/plugins/yatline-created-time/default.nix new file mode 100644 index 000000000000..8066350696b3 --- /dev/null +++ b/pkgs/by-name/ya/yazi/plugins/yatline-created-time/default.nix @@ -0,0 +1,23 @@ +{ + lib, + fetchFromGitHub, + mkYaziPlugin, +}: +mkYaziPlugin { + pname = "yatline-created-time.yazi"; + version = "0-unstable-2025-09-04"; + + src = fetchFromGitHub { + owner = "wekauwau"; + repo = "yatline-created-time.yazi"; + rev = "7cd5e216554b0d6fcfd04bcde617726194a110ba"; + hash = "sha256-yhm/tzRHBL011Gp+bOqT+Ck/0BcR5smo49Gqfv0L3oI="; + }; + + meta = { + description = "An addon to display the creation time of file or folder in your yatline.yazi"; + homepage = "https://github.com/wekauwau/yatline-created-time.yazi"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kpbaks ]; + }; +}