nixpkgs/pkgs/tools/misc/completely/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
500 B
Nix
Raw Normal View History

2023-01-29 09:33:43 +01:00
{ lib
, bundlerApp
, bundlerUpdateScript
}:
bundlerApp {
pname = "completely";
gemdir = ./.;
exes = [ "completely" ];
passthru.updateScript = bundlerUpdateScript "completely";
meta = with lib; {
description = "Generate bash completion scripts using a simple configuration file";
homepage = "https://github.com/DannyBen/completely";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ zendo ];
2023-11-27 02:17:53 +01:00
mainProgram = "completely";
2023-01-29 09:33:43 +01:00
};
}