nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, bundlerApp
3, bundlerUpdateScript
4}:
5
6bundlerApp {
7 pname = "completely";
8
9 gemdir = ./.;
10 exes = [ "completely" ];
11
12 passthru.updateScript = bundlerUpdateScript "completely";
13
14 meta = with lib; {
15 description = "Generate bash completion scripts using a simple configuration file";
16 homepage = "https://github.com/DannyBen/completely";
17 license = licenses.mit;
18 platforms = platforms.unix;
19 maintainers = with maintainers; [ zendo ];
20 };
21}