Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
22 lines
500 B
Nix
22 lines
500 B
Nix
{ 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 ];
|
|
mainProgram = "completely";
|
|
};
|
|
}
|