depot/third_party/nixpkgs/pkgs/tools/misc/completely/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

21 lines
468 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 ];
};
}