mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
22 lines
468 B
Nix
22 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 ];
|
|
};
|
|
}
|