nixpkgs/pkgs/tools/misc/desktop-file-utils/default.nix
V d290b2d733 desktop-file-utils: hardcode path to update-desktop-database
This is required for desktop-file-install to work correctly when used
directly from the Nix store (i.e. when not in $PATH).
2021-06-10 21:07:00 +02:00

31 lines
836 B
Nix

{ lib, stdenv, fetchurl, pkg-config, glib, libintl }:
with lib;
stdenv.mkDerivation rec {
pname = "desktop-file-utils";
version = "0.24";
src = fetchurl {
url = "https://www.freedesktop.org/software/${pname}/releases/${pname}-${version}.tar.xz";
sha256 = "1nc3bwjdrpcrkbdmzvhckq0yngbcxspwj2n1r7jr3gmx1jk5vpm1";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ glib libintl ];
postPatch = ''
substituteInPlace src/install.c \
--replace \"update-desktop-database\" \"$out/bin/update-desktop-database\"
'';
setupHook = ./setup-hook.sh;
meta = {
homepage = "http://www.freedesktop.org/wiki/Software/desktop-file-utils";
description = "Command line utilities for working with .desktop files";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.gpl2;
};
}