mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
29d5a48fd0
Changes: https://gitlab.freedesktop.org/xdg/desktop-file-utils/-/compare/0.26...0.27?from_project_id=1593&straight=false
45 lines
895 B
Nix
45 lines
895 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, pkg-config
|
|
, meson
|
|
, ninja
|
|
, glib
|
|
, libintl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "desktop-file-utils";
|
|
version = "0.27";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/${pname}/releases/${pname}-${version}.tar.xz";
|
|
hash = "sha256-oIF985zjhbZiGIBAfFbx8pgWjAQMIDLO34jVt2r/6DY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
libintl
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/install.c \
|
|
--replace \"update-desktop-database\" \"$out/bin/update-desktop-database\"
|
|
'';
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.freedesktop.org/wiki/Software/desktop-file-utils";
|
|
description = "Command line utilities for working with .desktop files";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|