mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
gdk-pixbuf: upstream patch to fix the nixos test
(cherry picked from commit 754d02df72)
It's safe: it just installs a new file into otherwise unused output.
Tested nixos.tests.gdk-pixbuf.x86_64-linux
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
{ stdenv, fetchurl, fixDarwinDylibNames, meson, ninja, pkgconfig, gettext, python3, libxml2, libxslt, docbook_xsl
|
||||
, docbook_xml_dtd_43, gtk-doc, glib, libtiff, libjpeg, libpng, libX11, gnome3
|
||||
, jasper, gobject-introspection, doCheck ? false, makeWrapper }:
|
||||
, jasper, gobject-introspection, doCheck ? false, makeWrapper
|
||||
, fetchpatch
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "gdk-pixbuf";
|
||||
@@ -16,6 +18,12 @@ in stdenv.mkDerivation rec {
|
||||
patches = [
|
||||
# Move installed tests to a separate output
|
||||
./installed-tests-path.patch
|
||||
# Temporary until the fix is released.
|
||||
(fetchpatch {
|
||||
name = "tests-circular-table.patch";
|
||||
url = "https://gitlab.gnome.org/GNOME/gdk-pixbuf/merge_requests/59.diff";
|
||||
sha256 = "0kaflac3mrh6031hwxk7j9fhli775hc503818h8zfl6b28zyn93f";
|
||||
})
|
||||
];
|
||||
|
||||
outputs = [ "out" "dev" "man" "devdoc" "installedTests" ];
|
||||
|
||||
Reference in New Issue
Block a user