mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
desktop-file-utils: 0.24 -> 0.26
make-desktopitem adds the prefersNonDefaultGPU option in commit c4b3aa6260
, but desktop-file-validate 0.24 doesn't recognize that key, so validation incorrectly fails. 0.26 solves this issue.
This commit is contained in:
parent
daffc694ef
commit
8a7c2218b9
@ -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 = ''
|
||||
|
Loading…
Reference in New Issue
Block a user