connman: move its expression to a dedicated directory

It is a typical pattern of Nixpkgs, and also helps when adding extra files like
updating scripts, custom patches &c.

+3 -3
pkgs/tools/networking/connman/connman.nix pkgs/tools/networking/connman/connman/default.nix
+3 -3
pkgs/tools/networking/connman/default.nix
··· 2 2 3 3 { 4 4 # All the defaults 5 - connman = callPackage ./connman.nix { }; 5 + connman = callPackage ./connman { }; 6 6 7 - connmanFull = callPackage ./connman.nix { 7 + connmanFull = connman.override { 8 8 # TODO: Why is this in `connmanFull` and not the default build? See TODO in 9 9 # nixos/modules/services/networking/connman.nix (near the assertions) 10 10 enableNetworkManager = true; ··· 14 14 enableTist = true; 15 15 }; 16 16 17 - connmanMinimal = callPackage ./connman.nix { 17 + connmanMinimal = connman.override { 18 18 enableOpenconnect = false; 19 19 enableOpenvpn = false; 20 20 enableVpnc = false;