2021-11-21 08:55:01 +00:00
|
|
|
{ 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;
|
2010-08-16 08:45:39 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-27 00:44:09 +01:00
|
|
|
pname = "desktop-file-utils";
|
2021-11-21 08:55:01 +00:00
|
|
|
version = "0.26";
|
2009-02-25 16:05:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-07-27 00:44:09 +01:00
|
|
|
url = "https://www.freedesktop.org/software/${pname}/releases/${pname}-${version}.tar.xz";
|
2021-11-21 08:55:01 +00:00
|
|
|
sha256 = "02bkfi6fyk4c0gh2avd897882ww5zl7qg7bzzf28qb57kvkvsvdj";
|
2009-02-25 16:05:13 +00:00
|
|
|
};
|
2010-08-16 08:45:39 +01:00
|
|
|
|
2021-11-21 08:55:01 +00:00
|
|
|
nativeBuildInputs = [ pkg-config meson ninja ];
|
2018-03-14 19:15:06 +00:00
|
|
|
buildInputs = [ glib libintl ];
|
2010-08-16 08:45:39 +01:00
|
|
|
|
2021-03-06 16:46:05 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/install.c \
|
|
|
|
--replace \"update-desktop-database\" \"$out/bin/update-desktop-database\"
|
|
|
|
'';
|
|
|
|
|
2019-02-09 00:26:54 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2010-08-16 08:45:39 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.freedesktop.org/wiki/Software/desktop-file-utils";
|
2010-08-16 08:45:39 +01:00
|
|
|
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;
|
2010-08-16 08:45:39 +01:00
|
|
|
};
|
2009-02-25 16:05:13 +00:00
|
|
|
}
|