fishPlugins.fishbang: init at 0-unstable-2025-01-10 (#416206)

This commit is contained in:
Sandro
2025-06-29 22:21:20 +02:00
committed by GitHub
2 changed files with 26 additions and 0 deletions
+2
View File
@@ -32,6 +32,8 @@ lib.makeScope newScope (
fifc = callPackage ./fifc.nix { };
fishbang = callPackage ./fishbang.nix { };
fish-bd = callPackage ./fish-bd.nix { };
# Fishtape 2.x and 3.x aren't compatible,
+24
View File
@@ -0,0 +1,24 @@
{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
buildFishPlugin {
pname = "fishbang";
version = "0-unstable-2025-01-10";
src = fetchFromGitHub {
owner = "BrewingWeasel";
repo = "fishbang";
rev = "f8d2721ac5508dbda54a666ebf12f1492c478277";
hash = "sha256-VHtjt3Xobvs0DTXJ1mFU8i84EEsNQv3yqbhjs7c1mNE=";
};
meta = {
description = "Bash bang commands for fish";
homepage = "https://github.com/BrewingWeasel/fishbang";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.marcel ];
};
}