connman: reverse order of build flavors declaration

This commit is contained in:
Doron Behar
2020-03-27 10:43:51 +03:00
parent 22b27dd635
commit aa44c23c7a
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -1,6 +1,9 @@
{ callPackage }:
{
# All the defaults
connman = callPackage ./connman.nix { };
connmanFull = callPackage ./connman.nix {
enableNetworkManager = true;
enableHh2serialGps = true;
@@ -32,7 +35,4 @@
enableClient = false;
# enableDatafiles = false; # If disabled, configuration and data files are not installed
};
# All the defaults
connman = callPackage ./connman.nix { };
}
+1 -1
View File
@@ -2551,9 +2551,9 @@ in
conspy = callPackage ../os-specific/linux/conspy {};
inherit (callPackage ../tools/networking/connman {})
connman
connmanFull
connmanMinimal
connman
;
connman-gtk = callPackage ../tools/networking/connman/connman-gtk { };