Merge pull request #146846 from cwyc/desktop-file-utils-0.26
This commit is contained in:
commit
28bb0e5fb4
1 changed files with 4 additions and 4 deletions
|
@ -1,17 +1,17 @@
|
||||||
{ lib, stdenv, fetchurl, pkg-config, glib, libintl }:
|
{ lib, stdenv, fetchurl, pkg-config, meson, ninja, glib, libintl }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "desktop-file-utils";
|
pname = "desktop-file-utils";
|
||||||
version = "0.24";
|
version = "0.26";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.freedesktop.org/software/${pname}/releases/${pname}-${version}.tar.xz";
|
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 ];
|
buildInputs = [ glib libintl ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
Loading…
Reference in a new issue