2024-05-02 22:37:53 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchFromGitLab, fetchFromGitHub, runCommand, writeText
|
2024-01-31 08:35:03 +00:00
|
|
|
# docs deps
|
|
|
|
, libxslt, docbook_xml_dtd_412, docbook_xml_dtd_43, docbook_xsl, xmlto
|
|
|
|
# runtime deps
|
2024-02-23 11:25:03 +00:00
|
|
|
, resholve, bash, coreutils, dbus, file, gawk, glib, gnugrep, gnused, jq, nettools, procmail, procps, which, xdg-user-dirs
|
2024-05-01 17:52:02 +00:00
|
|
|
, shared-mime-info
|
2024-01-31 08:35:03 +00:00
|
|
|
, perl, perlPackages
|
2022-10-21 20:16:49 +00:00
|
|
|
, withXdgOpenUsePortalPatch ? true }:
|
2015-08-15 19:01:46 +00:00
|
|
|
|
|
|
|
let
|
2019-09-24 20:07:47 +00:00
|
|
|
|
2024-01-31 08:35:03 +00:00
|
|
|
# Required by the common desktop detection code
|
|
|
|
commonDeps = [ dbus coreutils gnugrep gnused ];
|
|
|
|
# These are all faked because the current desktop is detected
|
|
|
|
# based on their presence, so we want them to be missing by default.
|
|
|
|
commonFakes = [
|
|
|
|
"explorer.exe"
|
|
|
|
"gnome-default-applications-properties"
|
|
|
|
"kde-config"
|
|
|
|
"xprop"
|
2019-09-24 20:07:47 +00:00
|
|
|
];
|
|
|
|
|
2024-01-31 08:35:03 +00:00
|
|
|
# This is still required to work around the eval trickery some scripts do
|
|
|
|
commonPrologue = "${writeText "xdg-utils-prologue" ''
|
2024-03-01 13:20:46 +00:00
|
|
|
export PATH=$PATH:${lib.makeBinPath [ coreutils ]}
|
2024-01-31 08:35:03 +00:00
|
|
|
''}";
|
|
|
|
|
|
|
|
solutions = [
|
|
|
|
{
|
|
|
|
scripts = [ "bin/xdg-desktop-icon" ];
|
|
|
|
interpreter = "${bash}/bin/bash";
|
|
|
|
inputs = commonDeps ++ [ xdg-user-dirs ];
|
|
|
|
execer = [
|
|
|
|
"cannot:${xdg-user-dirs}/bin/xdg-user-dir"
|
|
|
|
];
|
|
|
|
# These are desktop-specific, so we don't want xdg-utils to be able to
|
|
|
|
# call them when in a different setup.
|
|
|
|
fake.external = commonFakes ++ [
|
|
|
|
"gconftool-2" # GNOME2
|
|
|
|
];
|
|
|
|
keep."$KDE_SESSION_VERSION" = true;
|
|
|
|
prologue = commonPrologue;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
scripts = [ "bin/xdg-desktop-menu" ];
|
|
|
|
interpreter = "${bash}/bin/bash";
|
|
|
|
inputs = commonDeps ++ [ gawk ];
|
|
|
|
fake.external = commonFakes;
|
|
|
|
keep."$KDE_SESSION_VERSION" = true;
|
|
|
|
prologue = commonPrologue;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
scripts = [ "bin/xdg-email" ];
|
|
|
|
interpreter = "${bash}/bin/bash";
|
2024-02-04 23:40:00 +00:00
|
|
|
inputs = commonDeps ++ [ gawk glib.bin "${placeholder "out"}/bin" ];
|
2024-01-31 08:35:03 +00:00
|
|
|
execer = [
|
|
|
|
"cannot:${placeholder "out"}/bin/xdg-mime"
|
|
|
|
"cannot:${placeholder "out"}/bin/xdg-open"
|
|
|
|
];
|
|
|
|
# These are desktop-specific, so we don't want xdg-utils to be able to
|
|
|
|
# call them when in a different setup.
|
|
|
|
fake.external = commonFakes ++ [
|
|
|
|
"exo-open" # XFCE
|
|
|
|
"gconftool-2" # GNOME
|
|
|
|
"gio" # GNOME (new)
|
|
|
|
"gnome-open" # GNOME (very old)
|
|
|
|
"gvfs-open" # GNOME (old)
|
|
|
|
"qtxdg-mat" # LXQT
|
|
|
|
"xdg-email-hook.sh" # user-defined hook that may be available ambiently
|
|
|
|
];
|
|
|
|
fix."/bin/echo" = true;
|
|
|
|
keep = {
|
|
|
|
"$command" = true;
|
|
|
|
"$kreadconfig" = true;
|
|
|
|
"$THUNDERBIRD" = true;
|
|
|
|
"$utf8" = true;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
scripts = [ "bin/xdg-icon-resource" ];
|
|
|
|
interpreter = "${bash}/bin/bash";
|
|
|
|
inputs = commonDeps;
|
|
|
|
fake.external = commonFakes;
|
|
|
|
keep."$KDE_SESSION_VERSION" = true;
|
|
|
|
prologue = commonPrologue;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
scripts = [ "bin/xdg-mime" ];
|
|
|
|
interpreter = "${bash}/bin/bash";
|
|
|
|
inputs = commonDeps ++ [ file gawk ];
|
|
|
|
# These are desktop-specific, so we don't want xdg-utils to be able to
|
|
|
|
# call them when in a different setup.
|
|
|
|
fake.external = commonFakes ++ [
|
|
|
|
"gio" # GNOME (new)
|
|
|
|
"gnomevfs-info" # GNOME (very old)
|
|
|
|
"gvfs-info" # GNOME (old)
|
|
|
|
"kde4-config" # Plasma 4
|
|
|
|
"kfile" # KDE 3
|
|
|
|
"kmimetypefinder" # Plasma (generic)
|
|
|
|
"kmimetypefinder5" # Plasma 5
|
|
|
|
"ktraderclient" # KDE 3
|
|
|
|
"ktradertest" # KDE 3
|
|
|
|
"mimetype" # alternative tool for file, pulls in perl, avoid
|
|
|
|
"qtpaths" # Plasma
|
|
|
|
"qtxdg-mat" # LXQT
|
|
|
|
];
|
|
|
|
fix."/usr/bin/file" = true;
|
|
|
|
keep = {
|
|
|
|
"$KDE_SESSION_VERSION" = true;
|
|
|
|
"$KTRADER" = true;
|
|
|
|
};
|
2024-03-01 13:20:46 +00:00
|
|
|
prologue = "${writeText "xdg-mime-prologue" ''
|
2024-05-01 17:52:02 +00:00
|
|
|
export XDG_DATA_DIRS="$XDG_DATA_DIRS''${XDG_DATA_DIRS:+:}${shared-mime-info}/share"
|
2024-03-01 13:20:46 +00:00
|
|
|
export PERL5LIB=${with perlPackages; makePerlPath [ FileMimeInfo ]}
|
|
|
|
export PATH=$PATH:${lib.makeBinPath [ coreutils perlPackages.FileMimeInfo ]}
|
|
|
|
''}";
|
2024-01-31 08:35:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
scripts = [ "bin/xdg-open" ];
|
|
|
|
interpreter = "${bash}/bin/bash";
|
2024-02-04 23:40:00 +00:00
|
|
|
inputs = commonDeps ++ [ nettools glib.bin "${placeholder "out"}/bin" ];
|
2024-01-31 08:35:03 +00:00
|
|
|
execer = [
|
|
|
|
"cannot:${placeholder "out"}/bin/xdg-mime"
|
|
|
|
];
|
|
|
|
# These are desktop-specific, so we don't want xdg-utils to be able to
|
|
|
|
# call them when in a different setup.
|
|
|
|
fake.external = commonFakes ++ [
|
|
|
|
"cygstart" # Cygwin
|
|
|
|
"dde-open" # Deepin
|
|
|
|
"enlightenment_open" # Enlightenment
|
|
|
|
"exo-open" # XFCE
|
|
|
|
"gio" # GNOME (new)
|
|
|
|
"gnome-open" # GNOME (very old)
|
|
|
|
"gvfs-open" # GNOME (old)
|
|
|
|
"kde-open" # Plasma
|
|
|
|
"kfmclient" # KDE3
|
|
|
|
"mate-open" # MATE
|
|
|
|
"mimeopen" # alternative tool for file, pulls in perl, avoid
|
|
|
|
"open" # macOS
|
|
|
|
"pcmanfm" # LXDE
|
|
|
|
"qtxdg-mat" # LXQT
|
|
|
|
"run-mailcap" # generic
|
|
|
|
"rundll32.exe" # WSL
|
|
|
|
"wslpath" # WSL
|
|
|
|
];
|
|
|
|
fix."$printf" = [ "printf" ];
|
|
|
|
keep = {
|
|
|
|
"env:$command" = true;
|
|
|
|
"$browser" = true;
|
|
|
|
"$KDE_SESSION_VERSION" = true;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
scripts = [ "bin/xdg-screensaver" ];
|
|
|
|
interpreter = "${bash}/bin/bash";
|
2024-05-24 13:02:55 +00:00
|
|
|
inputs = commonDeps ++ [ nettools perl procps ]
|
|
|
|
# procmail's funky build system is currently broken in cross-build.
|
|
|
|
# xdg-screensaver will gracefully degrade if it's not available.
|
|
|
|
++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) procmail;
|
2024-01-31 08:35:03 +00:00
|
|
|
# These are desktop-specific, so we don't want xdg-utils to be able to
|
|
|
|
# call them when in a different setup.
|
|
|
|
fake.external = commonFakes ++ [
|
|
|
|
"dcop" # KDE3
|
|
|
|
"mate-screensaver-command" # MATE
|
|
|
|
"xautolock" # Xautolock
|
|
|
|
"xscreensaver-command" # Xscreensaver
|
|
|
|
"xset" # generic-ish X
|
2024-05-24 13:02:55 +00:00
|
|
|
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "lockfile"; # procmail
|
2024-01-31 08:35:03 +00:00
|
|
|
keep = {
|
|
|
|
"$MV" = true;
|
|
|
|
"$XPROP" = true;
|
2024-04-17 05:45:38 +00:00
|
|
|
"$lockfile_command" = true;
|
2024-01-31 08:35:03 +00:00
|
|
|
};
|
2024-03-28 19:21:54 +00:00
|
|
|
execer = [
|
|
|
|
"cannot:${perl}/bin/perl"
|
|
|
|
];
|
2024-01-31 08:35:03 +00:00
|
|
|
prologue = "${writeText "xdg-screensaver-prologue" ''
|
|
|
|
export PERL5LIB=${with perlPackages; makePerlPath [ NetDBus XMLTwig XMLParser X11Protocol ]}
|
|
|
|
export PATH=$PATH:${coreutils}/bin
|
|
|
|
''}";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
scripts = [ "bin/xdg-settings" ];
|
|
|
|
interpreter = "${bash}/bin/bash";
|
|
|
|
inputs = commonDeps ++ [ jq "${placeholder "out"}/bin" ];
|
|
|
|
execer = [
|
|
|
|
"cannot:${placeholder "out"}/bin/xdg-mime"
|
|
|
|
];
|
|
|
|
# These are desktop-specific, so we don't want xdg-utils to be able to
|
|
|
|
# call them when in a different setup.
|
|
|
|
fake.external = commonFakes ++ [
|
|
|
|
"gconftool-2" # GNOME
|
|
|
|
"kreadconfig" # Plasma (generic)
|
|
|
|
"kreadconfig5" # Plasma 5
|
|
|
|
"kreadconfig6" # Plasma 6
|
|
|
|
"ktradertest" # KDE3
|
|
|
|
"kwriteconfig" # Plasma (generic)
|
|
|
|
"kwriteconfig5" # Plasma 5
|
|
|
|
"kwriteconfig6" # Plasma 6
|
|
|
|
"qtxdg-mat" # LXQT
|
|
|
|
];
|
|
|
|
keep = {
|
|
|
|
"$KDE_SESSION_VERSION" = true;
|
|
|
|
# get_browser_$handler
|
|
|
|
"$handler" = true;
|
|
|
|
};
|
|
|
|
}
|
2024-02-23 11:25:03 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
scripts = [ "bin/xdg-terminal" ];
|
|
|
|
interpreter = "${bash}/bin/bash";
|
|
|
|
inputs = commonDeps ++ [ bash glib.bin which ];
|
|
|
|
fake.external = commonFakes ++ [
|
|
|
|
"gconftool-2" # GNOME
|
|
|
|
"exo-open" # XFCE
|
|
|
|
"lxterminal" # LXQT
|
|
|
|
"qterminal" # LXQT
|
|
|
|
"terminology" # Englightenment
|
|
|
|
];
|
|
|
|
keep = {
|
|
|
|
"$command" = true;
|
|
|
|
"$kreadconfig" = true;
|
|
|
|
"$terminal_exec" = true;
|
|
|
|
};
|
|
|
|
prologue = commonPrologue;
|
|
|
|
}
|
2024-01-31 08:35:03 +00:00
|
|
|
];
|
2015-08-15 19:01:46 +00:00
|
|
|
in
|
2010-03-25 19:48:06 +00:00
|
|
|
|
2024-05-02 22:37:53 +00:00
|
|
|
stdenv.mkDerivation (self: {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "xdg-utils";
|
2024-02-06 11:50:23 +00:00
|
|
|
version = "1.2.1";
|
2014-11-06 00:44:33 +00:00
|
|
|
|
2022-03-29 22:57:38 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.freedesktop.org";
|
|
|
|
owner = "xdg";
|
|
|
|
repo = "xdg-utils";
|
2024-05-02 22:37:53 +00:00
|
|
|
rev = "v${self.version}";
|
2024-02-06 11:50:23 +00:00
|
|
|
hash = "sha256-58ElbrVlk+13DUODSEHBPcDDt9H+Kuee8Rz9CIcoy0I=";
|
2010-03-25 19:48:06 +00:00
|
|
|
};
|
2012-10-04 11:38:26 +00:00
|
|
|
|
2024-02-06 11:50:23 +00:00
|
|
|
patches = lib.optionals withXdgOpenUsePortalPatch [
|
2022-10-21 20:16:49 +00:00
|
|
|
# Allow forcing the use of XDG portals using NIXOS_XDG_OPEN_USE_PORTAL environment variable.
|
|
|
|
# Upstream PR: https://github.com/freedesktop/xdg-utils/pull/12
|
|
|
|
./allow-forcing-portal-use.patch
|
2024-02-23 11:25:03 +00:00
|
|
|
# Enable build of xdg-terminal
|
|
|
|
./enable-xdg-terminal.patch
|
2022-10-21 20:16:49 +00:00
|
|
|
];
|
|
|
|
|
2015-02-07 06:30:05 +00:00
|
|
|
# just needed when built from git
|
2024-01-31 08:35:03 +00:00
|
|
|
nativeBuildInputs = [ libxslt docbook_xml_dtd_412 docbook_xml_dtd_43 docbook_xsl xmlto ];
|
2015-01-25 13:30:27 +00:00
|
|
|
|
2023-07-30 00:25:25 +00:00
|
|
|
# explicitly provide a runtime shell so patchShebangs is consistent across build platforms
|
|
|
|
buildInputs = [ bash ];
|
|
|
|
|
2024-01-31 08:35:03 +00:00
|
|
|
preFixup = lib.concatStringsSep "\n" (map (resholve.phraseSolution "xdg-utils-resholved") solutions);
|
|
|
|
|
2024-05-02 22:37:53 +00:00
|
|
|
passthru.tests.xdg-mime = runCommand "xdg-mime-test" {
|
|
|
|
nativeBuildInputs = [ self.finalPackage ];
|
|
|
|
preferLocalBuild = true;
|
|
|
|
xenias = lib.mapAttrsToList (hash: urls: fetchurl { inherit hash urls; }) {
|
|
|
|
"sha256-SL95tM1AjOi7vDnCyT10s0tvQvc+ZSZBbkNOYXfbOy0=" = [
|
|
|
|
"https://staging.cohostcdn.org/attachment/0f5d9832-0cda-4d07-b35f-832b287feb6c/kernelkisser.png"
|
|
|
|
"https://static1.e621.net/data/0e/76/0e7672980d48e48c2d1373eb2505db5a.png"
|
|
|
|
];
|
|
|
|
"sha256-Si9AtB7J9o6rK/oftv+saST77CNaeWomWU5ECfbRioM=" = [
|
|
|
|
"https://static1.e621.net/data/25/3d/253dc77fbc60d7214bc60e4a647d1c32.jpg"
|
|
|
|
];
|
|
|
|
"sha256-Z+onQRY5zlDWPp5/y4E6crLz3TaMCNipcxEEMSHuLkM=" = [
|
|
|
|
"https://d.furaffinity.net/art/neotheta/1691409857/1691409857.neotheta_quickmakeanentry_by_neotheta-sig.png"
|
|
|
|
"https://static1.e621.net/data/bf/e4/bfe43ba264ad68e5d8a101ecef69c03e.png"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
} ''
|
|
|
|
for x in $xenias; do
|
|
|
|
ext=''${x##*.}
|
|
|
|
type="$(xdg-mime query filetype $x)"
|
|
|
|
[ $? -eq 0 ] && [ "$type" = "image/''${ext/jpg/jpeg}" ] || {
|
|
|
|
echo "Incorrect MIME type '$type' for '$x'" >&2
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
done
|
|
|
|
touch $out
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.freedesktop.org/wiki/Software/xdg-utils/";
|
2010-03-25 19:48:06 +00:00
|
|
|
description = "Set of command line tools that assist applications with a variety of desktop integration tasks";
|
2024-09-06 18:33:30 +00:00
|
|
|
license = licenses.mit;
|
tree-wide: remove eelco as maintainer from things he no longer maintains
While preparing this change, I read the git blame on all of the files I
touched. I saw a working lifetime of building this system which we use
every day and love dearly and keep maintained ourselves. I saw commits
from a 14 year range between 2003 to 2017!! I could not be more thankful
for Eelco's work on building large parts of the foundation of nixpkgs
that all of us rely on now.
However, the end date of that range of the files I looked at the blame
on was 2017. I did not see surviving code from any newer date than that.
Looking at the Git logs, Eelco has been working on other things, and
that's totally fine.
However, it means that our maintenance metadata is out of date on a lot
of packages, and *that*'s the reason I am submitting this change. There
are a lot of packages that don't have anyone with their name on them to
be pinged if they need attention, even if they have had recent activity
(although it is never clear if recent activity was just someone fixing
it because ZHF or because the package actually matters to them).
There are a lot of packages with storied history that maybe don't need
to be in the set anymore at all since they have not been touched in
years; or maybe they are simply finished.
Empty maintainer lists should be a sign that we need to figure out who
maintains it or potentially remove it if it has rotted, and allowing the
maintainer list to be empty if it is already not maintained is part of a
healthy repository ecology.
Either way, I would like to have the maintenance metadata not mislead
anyone into sending Eelco emails about packages he doesn't, in practice,
work on anymore. I have not removed his name from everything; there are
some things that he is the upstream for or has worked on more recently,
for instance, like Nix, which I have left alone.
2024-08-21 08:07:42 +00:00
|
|
|
maintainers = [ ];
|
2015-10-28 17:49:04 +00:00
|
|
|
platforms = platforms.all;
|
2010-03-25 19:48:06 +00:00
|
|
|
};
|
2024-05-02 22:37:53 +00:00
|
|
|
})
|