Merge pull request #146846 from cwyc/desktop-file-utils-0.26

This commit is contained in:
Sandro 2021-11-25 01:04:55 +01:00 committed by GitHub
commit 28bb0e5fb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,17 @@
{ lib, stdenv, fetchurl, pkg-config, glib, libintl }:
{ lib, stdenv, fetchurl, pkg-config, meson, ninja, glib, libintl }:
with lib;
stdenv.mkDerivation rec {
pname = "desktop-file-utils";
version = "0.24";
version = "0.26";
src = fetchurl {
url = "https://www.freedesktop.org/software/${pname}/releases/${pname}-${version}.tar.xz";
sha256 = "1nc3bwjdrpcrkbdmzvhckq0yngbcxspwj2n1r7jr3gmx1jk5vpm1";
sha256 = "02bkfi6fyk4c0gh2avd897882ww5zl7qg7bzzf28qb57kvkvsvdj";
};
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [ pkg-config meson ninja ];
buildInputs = [ glib libintl ];
postPatch = ''