nixpkgs/pkgs/tools/misc/desktop-file-utils/default.nix

31 lines
862 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, meson, ninja, glib, libintl }:
2017-04-21 01:44:30 +01:00
2021-01-15 09:19:50 +00:00
with lib;
stdenv.mkDerivation rec {
pname = "desktop-file-utils";
version = "0.26";
src = fetchurl {
url = "https://www.freedesktop.org/software/${pname}/releases/${pname}-${version}.tar.xz";
sha256 = "02bkfi6fyk4c0gh2avd897882ww5zl7qg7bzzf28qb57kvkvsvdj";
};
nativeBuildInputs = [ pkg-config meson ninja ];
2018-03-14 19:15:06 +00:00
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";
2017-04-21 01:44:30 +01:00
platforms = platforms.linux ++ platforms.darwin;
2018-09-11 22:32:49 +01:00
license = licenses.gpl2;
};
}