2018-08-15 09:55:35 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
{
|
2020-04-02 01:16:24 +01:00
|
|
|
meta = {
|
|
|
|
maintainers = teams.freedesktop.members;
|
|
|
|
};
|
|
|
|
|
2018-08-15 09:55:35 +01:00
|
|
|
options = {
|
|
|
|
xdg.mime.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
2018-09-08 22:43:42 +01:00
|
|
|
Whether to install files to support the
|
2018-08-15 09:55:35 +01:00
|
|
|
<link xlink:href="https://specifications.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html">XDG Shared MIME-info specification</link> and the
|
|
|
|
<link xlink:href="https://specifications.freedesktop.org/mime-apps-spec/mime-apps-spec-latest.html">XDG MIME Applications specification</link>.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.xdg.mime.enable {
|
|
|
|
environment.pathsToLink = [ "/share/mime" ];
|
|
|
|
|
2018-09-08 22:43:42 +01:00
|
|
|
environment.systemPackages = [
|
|
|
|
# this package also installs some useful data, as well as its utilities
|
|
|
|
pkgs.shared-mime-info
|
2018-08-15 09:55:35 +01:00
|
|
|
];
|
2018-08-15 10:59:44 +01:00
|
|
|
|
|
|
|
environment.extraSetup = ''
|
2018-09-08 22:38:51 +01:00
|
|
|
if [ -w $out/share/mime ] && [ -d $out/share/mime/packages ]; then
|
nixos/xdg/mime: disable fdatasync when building the XDG MIME database
Back in 2013, update-mime-database started using fdatasync() to write out
its changes after processing each file in /share/mime, with the reasoning
that a corrupted database from an interruption midway would be
problematic for applications[1]. Unfortunately, this caused a
significant regression in the time required to run update-mime-database:
commonly from under a second to half a minute or more.
This delay affects the time required to build system-path on NixOS, when
xdg.mime.enable is true (the default). For example, on one of my systems
system-path builds in ~48 seconds, 45 of which are update-mime-database.
This makes rapidly building new system configurations not fun.
This commit disables the calls to fdatasync(). update-mime-database
checks an environment variable, PKGSYSTEM_ENABLE_FSYNC, to determine
whether it should sync, and we can set this to false. system-path
already only has whatever filesystem commit guarantees that the Nix
builder provides. Furthermore, there is no risk of a failed MIME
database update messing up existing packages, because this is Nix.
(This issue was also reported at and discussed by Debian, Red Hat, and
Gentoo at least.)
[1] https://bugs.freedesktop.org/show_bug.cgi?id=70366
2019-05-26 04:25:12 +01:00
|
|
|
XDG_DATA_DIRS=$out/share PKGSYSTEM_ENABLE_FSYNC=0 ${pkgs.buildPackages.shared-mime-info}/bin/update-mime-database -V $out/share/mime > /dev/null
|
2018-08-15 10:59:44 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -w $out/share/applications ]; then
|
2018-10-12 02:16:50 +01:00
|
|
|
${pkgs.buildPackages.desktop-file-utils}/bin/update-desktop-database $out/share/applications
|
2018-08-15 10:59:44 +01:00
|
|
|
fi
|
|
|
|
'';
|
2018-08-15 09:55:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|