mirror of
https://github.com/deltathetawastaken/dotfiles.git
synced 2025-12-06 07:16:37 +03:00
13 lines
218 B
Nix
13 lines
218 B
Nix
{ stdenv, lib, buildFishPlugin }:
|
|
|
|
buildFishPlugin rec {
|
|
pname = "my-fish-functions";
|
|
version = "1.0.0";
|
|
|
|
src = ./fish-functions;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "My custom fish functions";
|
|
};
|
|
}
|