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

33 lines
1,016 B
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, pkgconfig, glib, libintl }:
2017-04-21 00:44:30 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2017-12-03 20:17:32 +00:00
name = "desktop-file-utils-0.23";
src = fetchurl {
url = "https://www.freedesktop.org/software/desktop-file-utils/releases/${name}.tar.xz";
2017-12-03 20:17:32 +00:00
sha256 = "119kj2w0rrxkhg4f9cf5waa55jz1hj8933vh47vcjipcplql02bc";
};
patches = [
# Makes font a recognized media type. Committed upstream, but no release has been made.
(fetchpatch {
url = "https://gitlab.freedesktop.org/xdg/desktop-file-utils/commit/92af4108750ceaf4191fd54e255885c7d8a78b70.patch";
sha256 = "14sqy10p5skp6hv4hgiwnj9hpr460250x42k5z0390l6nr6gahsq";
})
];
nativeBuildInputs = [ pkgconfig ];
2018-03-14 19:15:06 +00:00
buildInputs = [ glib libintl ];
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 00:44:30 +00:00
platforms = platforms.linux ++ platforms.darwin;
2018-09-11 21:32:49 +00:00
license = licenses.gpl2;
};
}