yaziPlugins.drag: init at 0-unstable-2025-08-29 (#487240)

This commit is contained in:
Matthias Beyer
2026-02-06 07:06:22 +00:00
committed by GitHub
2 changed files with 29 additions and 0 deletions

View File

@@ -9556,6 +9556,12 @@
githubId = 127353;
name = "Geoffrey Huntley";
};
gibbert = {
email = "gbjgms@gmail.com";
github = "zgibberish";
githubId = 67570424;
name = "gibbert";
};
gigahawk = {
email = "Jasper Chan";
name = "jasperchan515@gmail.com";

View File

@@ -0,0 +1,23 @@
{
lib,
fetchFromGitHub,
mkYaziPlugin,
}:
mkYaziPlugin {
pname = "drag.yazi";
version = "0-unstable-2025-08-29";
src = fetchFromGitHub {
owner = "Joao-Queiroga";
repo = "drag.yazi";
rev = "27606689cb82c56a19c052a7b7935cd9b1466bab";
hash = "sha256-ITkZjpwWXni4tQpDhUiVvtPrEkAo6RISgCH594NgpYE=";
};
meta = {
description = "Yazi plugin to drag and drop files using ripdrag";
homepage = "https://github.com/Joao-Queiroga/drag.yazi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gibbert ];
};
}