mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
qt55.qtbase: fix patch sha with fetchpatch instead of fetchurl
This commit is contained in:
parent
3f3b6e6b6c
commit
a927abbee0
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, lib, fetchurl, copyPathsToStore
|
||||
{ stdenv, lib, fetchpatch, copyPathsToStore
|
||||
, srcs
|
||||
|
||||
, xlibs, libX11, libxcb, libXcursor, libXext, libXrender, libXi
|
||||
|
@ -30,10 +30,10 @@ let
|
|||
# Search path for Gtk plugin
|
||||
gtkLibPath = lib.makeLibraryPath [ gtk2 gnome_vfs libgnomeui GConf ];
|
||||
|
||||
dontInvalidateBacking = fetchurl {
|
||||
dontInvalidateBacking = fetchpatch {
|
||||
url = "https://codereview.qt-project.org/gitweb?p=qt/qtbase.git;a=patch;h=0f68f8920573cdce1729a285a92ac8582df32841;hp=24c50f8dcf7fa61ac3c3d4d6295c259a104a2b8c";
|
||||
name = "qtbug-48321-dont-invalidate-backing-store.patch";
|
||||
sha256 = "07vnndmvri73psz0nrs2hg0zw2i4b1k1igy2al6kwjbp7d5xpglr";
|
||||
sha256 = "1wynm2hhbhpvzvsz4vpzzkl0ss5skac6934bva8brcpi5xq68h1q";
|
||||
};
|
||||
in
|
||||
|
||||
|
|
Loading…
Reference in a new issue