mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
json-glib: Restore single quote string extension
This fixes https://hydra.nixos.org/build/274421427/nixlog/1.
This commit is contained in:
parent
74be63f96b
commit
1b708a0f85
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, fetchpatch
|
||||
, docutils
|
||||
, glib
|
||||
, meson
|
||||
@ -33,6 +34,13 @@ stdenv.mkDerivation rec {
|
||||
patches = [
|
||||
# Add option for changing installation path of installed tests.
|
||||
./meson-add-installed-tests-prefix-option.patch
|
||||
|
||||
# Restore single quote string extension
|
||||
# https://gitlab.gnome.org/GNOME/json-glib/-/issues/76
|
||||
(fetchpatch {
|
||||
url = "https://gitlab.gnome.org/GNOME/json-glib/-/commit/2a26bd3dedc3b27471e6df210d76333d3d41159c.patch";
|
||||
hash = "sha256-U/jWB4wneN4MwZO3vAfI9Z7UT/SLMNEx/X8NMsCO8I4=";
|
||||
})
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
Loading…
Reference in New Issue
Block a user