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

31 lines
836 B
Nix
Raw Normal View History

2021-01-17 04:51:22 +01:00
{ lib, stdenv, fetchurl, pkg-config, glib, libintl }:
2017-04-21 02:44:30 +02:00
2021-01-15 10:19:50 +01:00
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";
};
2021-01-17 04:51:22 +01:00
nativeBuildInputs = [ pkg-config ];
2018-03-14 20:15:06 +01: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 02:44:30 +02:00
platforms = platforms.linux ++ platforms.darwin;
2018-09-11 23:32:49 +02:00
license = licenses.gpl2;
};
}