mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
libgda: finally fix compatibility with GLib
vcunat ported this and changed fetchpatch to fetchurl, as the patch is just an attachement, it's not generated.
This commit is contained in:
parent
637c105159
commit
d9d65fb275
|
@ -3,6 +3,14 @@
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
inherit (import ./src.nix fetchurl) name src;
|
inherit (import ./src.nix fetchurl) name src;
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchurl {
|
||||||
|
name = "libgda-fix-encoding-of-copyright-headers.patch";
|
||||||
|
url = https://bug787685.bugzilla-attachments.gnome.org/attachment.cgi?id=359901;
|
||||||
|
sha256 = "11qj7f7zsiw8jy18vlwz2prlxpg4iq350sws3qwfwsv0lnmncmfq";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--enable-gi-system-install=no"
|
"--enable-gi-system-install=no"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue