summary refs log tree commit diff
path: root/pkgs/tools/misc/desktop-file-utils
diff options
context:
space:
mode:
authorcwyc <16950437+cwyc@users.noreply.github.com>2021-11-21 03:55:01 -0500
committercwyc <16950437+cwyc@users.noreply.github.com>2021-11-22 12:10:13 -0500
commit8a7c2218b9bacf0c1b87c314156d9b66e766498c (patch)
treee8755a601eb57b67c893efcc4253056ecd1642da /pkgs/tools/misc/desktop-file-utils
parentdaffc694ef4e4d4d92cc75ff96207c34cf09eeb4 (diff)
downloadnixpkgs-8a7c2218b9bacf0c1b87c314156d9b66e766498c.tar
nixpkgs-8a7c2218b9bacf0c1b87c314156d9b66e766498c.tar.gz
nixpkgs-8a7c2218b9bacf0c1b87c314156d9b66e766498c.tar.bz2
nixpkgs-8a7c2218b9bacf0c1b87c314156d9b66e766498c.tar.lz
nixpkgs-8a7c2218b9bacf0c1b87c314156d9b66e766498c.tar.xz
nixpkgs-8a7c2218b9bacf0c1b87c314156d9b66e766498c.tar.zst
nixpkgs-8a7c2218b9bacf0c1b87c314156d9b66e766498c.zip
desktop-file-utils: 0.24 -> 0.26
make-desktopitem adds the prefersNonDefaultGPU option in commit c4b3aa62608d592d8a983be685f7e82000f4de30, but desktop-file-validate 0.24 doesn't recognize that key, so validation incorrectly fails. 0.26 solves this issue.
Diffstat (limited to 'pkgs/tools/misc/desktop-file-utils')
-rw-r--r--pkgs/tools/misc/desktop-file-utils/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/desktop-file-utils/default.nix b/pkgs/tools/misc/desktop-file-utils/default.nix
index da87d048b70..af3e907c04a 100644
--- a/pkgs/tools/misc/desktop-file-utils/default.nix
+++ b/pkgs/tools/misc/desktop-file-utils/default.nix
@@ -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 = ''