Merge pull request #19854 from andjscott/mlocate

[WIP] mlocate: init at version 0.26
This commit is contained in:
Michael Raskin
2016-12-28 10:24:11 +00:00
committed by GitHub
3 changed files with 33 additions and 1 deletions
+10 -1
View File
@@ -15,6 +15,15 @@ in {
'';
};
locate = mkOption {
type = types.package;
default = pkgs.findutils;
example = "pkgs.mlocate";
description = ''
The locate implementation to use
'';
};
interval = mkOption {
type = types.str;
default = "02:15";
@@ -77,7 +86,7 @@ in {
script =
''
mkdir -m 0755 -p $(dirname ${toString cfg.output})
exec updatedb \
exec ${cfg.locate}/bin/updatedb \
--localuser=${cfg.localuser} \
${optionalString (!cfg.includeStore) "--prunepaths='/nix/store'"} \
--output=${toString cfg.output} ${concatStringsSep " " cfg.extraFlags}