at master 26 lines 653 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5 unstableGitUpdater, 6}: 7buildFishPlugin { 8 pname = "plugin-sudope"; 9 version = "0-unstable-2025-09-16"; 10 11 src = fetchFromGitHub { 12 owner = "oh-my-fish"; 13 repo = "plugin-sudope"; 14 rev = "4ad91e49329811939c3a09221a95e620c3964b17"; 15 hash = "sha256-OsgThGY/tGF/XBQFyXTY9qYf50B01wEH93lqWEAxZPY="; 16 }; 17 18 passthru.updateScript = unstableGitUpdater { }; 19 20 meta = { 21 description = "Fish plugin to quickly put 'sudo' in your command"; 22 homepage = "https://github.com/oh-my-fish/plugin-sudope"; 23 license = lib.licenses.isc; 24 maintainers = with lib.maintainers; [ anomalocaris ]; 25 }; 26}