23 lines
507 B
Nix
23 lines
507 B
Nix
{
|
|
lib,
|
|
bundlerApp,
|
|
bundlerUpdateScript,
|
|
}:
|
|
|
|
bundlerApp {
|
|
pname = "completely";
|
|
|
|
gemdir = ./.;
|
|
exes = [ "completely" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "completely";
|
|
|
|
meta = {
|
|
description = "Generate bash completion scripts using a simple configuration file";
|
|
homepage = "https://github.com/DannyBen/completely";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ zendo ];
|
|
mainProgram = "completely";
|
|
};
|
|
}
|