-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch staging-next into haskell-updates
- Loading branch information
Showing
1,418 changed files
with
26,845 additions
and
31,322 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23179,6 +23179,17 @@ | |
githubId = 36118348; | ||
keys = [ { fingerprint = "69C9 876B 5797 1B2E 11C5 7C39 80A1 F76F C9F9 54AE"; } ]; | ||
}; | ||
wizardlink = { | ||
name = "wizardlink"; | ||
email = "[email protected]"; | ||
github = "wizardlink"; | ||
githubId = 26727907; | ||
keys = [ | ||
{ | ||
fingerprint = "A1D3 A2B4 E14B D7C0 445B B749 A576 7B54 367C FBDF"; | ||
} | ||
]; | ||
}; | ||
wizeman = { | ||
email = "[email protected]"; | ||
github = "wizeman"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
config, | ||
pkgs, | ||
lib, | ||
... | ||
}: | ||
|
||
{ | ||
meta = { | ||
maintainers = lib.teams.gnome.members; | ||
}; | ||
|
||
imports = [ | ||
(lib.mkRenamedOptionModule | ||
[ | ||
"services" | ||
"gnome" | ||
"tracker-miners" | ||
"enable" | ||
] | ||
[ | ||
"services" | ||
"gnome" | ||
"localsearch" | ||
"enable" | ||
] | ||
) | ||
]; | ||
|
||
options = { | ||
services.gnome.localsearch = { | ||
enable = lib.mkOption { | ||
type = lib.types.bool; | ||
default = false; | ||
description = '' | ||
Whether to enable LocalSearch, indexing services for TinySPARQL | ||
search engine and metadata storage system. | ||
''; | ||
}; | ||
}; | ||
}; | ||
|
||
config = lib.mkIf config.services.gnome.localsearch.enable { | ||
environment.systemPackages = [ pkgs.localsearch ]; | ||
|
||
services.dbus.packages = [ pkgs.localsearch ]; | ||
|
||
systemd.packages = [ pkgs.localsearch ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
config, | ||
pkgs, | ||
lib, | ||
... | ||
}: | ||
|
||
let | ||
cfg = config.services.gnome.tinysparql; | ||
in | ||
{ | ||
meta = { | ||
maintainers = lib.teams.gnome.members; | ||
}; | ||
|
||
imports = [ | ||
(lib.mkRemovedOptionModule | ||
[ | ||
"services" | ||
"gnome" | ||
"tracker" | ||
"subcommandPackages" | ||
] | ||
'' | ||
This option is broken since 3.7 and since 3.8 tracker (tinysparql) no longer expect | ||
CLI to be extended by external projects, note that tracker-miners (localsearch) now | ||
provides its own CLI tool. | ||
'' | ||
) | ||
(lib.mkRenamedOptionModule | ||
[ | ||
"services" | ||
"gnome" | ||
"tracker" | ||
"enable" | ||
] | ||
[ | ||
"services" | ||
"gnome" | ||
"tinysparql" | ||
"enable" | ||
] | ||
) | ||
]; | ||
|
||
options = { | ||
services.gnome.tinysparql = { | ||
enable = lib.mkOption { | ||
type = lib.types.bool; | ||
default = false; | ||
description = '' | ||
Whether to enable TinySPARQL services, a search engine, | ||
search tool and metadata storage system. | ||
''; | ||
}; | ||
}; | ||
}; | ||
|
||
config = lib.mkIf cfg.enable { | ||
environment.systemPackages = [ pkgs.tinysparql ]; | ||
|
||
services.dbus.packages = [ pkgs.tinysparql ]; | ||
|
||
systemd.packages = [ pkgs.tinysparql ]; | ||
}; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.