gdk-pixbuf: upstream patch to fix the nixos test
Tested nixos.tests.installed-tests.gdk-pixbuf.x86_64-linux atop the current nixpkgs master.
This commit is contained in:
parent
5194608599
commit
754d02df72
@ -1,6 +1,8 @@
|
|||||||
{ stdenv, fetchurl, nixosTests, fixDarwinDylibNames, meson, ninja, pkgconfig, gettext, python3, libxml2, libxslt, docbook_xsl
|
{ stdenv, fetchurl, nixosTests, fixDarwinDylibNames, meson, ninja, pkgconfig, gettext, python3, libxml2, libxslt, docbook_xsl
|
||||||
, docbook_xml_dtd_43, gtk-doc, glib, libtiff, libjpeg, libpng, libX11, gnome3
|
, docbook_xml_dtd_43, gtk-doc, glib, libtiff, libjpeg, libpng, libX11, gnome3
|
||||||
, gobject-introspection, doCheck ? false, makeWrapper }:
|
, gobject-introspection, doCheck ? false, makeWrapper
|
||||||
|
, fetchpatch
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
pname = "gdk-pixbuf";
|
pname = "gdk-pixbuf";
|
||||||
@ -16,6 +18,12 @@ in stdenv.mkDerivation rec {
|
|||||||
patches = [
|
patches = [
|
||||||
# Move installed tests to a separate output
|
# Move installed tests to a separate output
|
||||||
./installed-tests-path.patch
|
./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" ];
|
outputs = [ "out" "dev" "man" "devdoc" "installedTests" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user