Merge pull request #50493 from michaelpj/imp/desktop-file-utils-patch

desktop-file-utils: use patch for font media type
This commit is contained in:
Renaud 2018-11-17 14:27:20 +01:00 committed by GitHub
commit 93b68639f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, glib, libintl }:
{ stdenv, fetchurl, fetchpatch, pkgconfig, glib, libintl }:
with stdenv.lib;
@ -10,6 +10,14 @@ stdenv.mkDerivation rec {
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 ];
buildInputs = [ glib libintl ];