1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

libsigcxx: make *.pc force C++11

This fixes compilation problems of some packages against *mm,
including gtkmm-2 itself.
This commit is contained in:
Vladimír Čunát 2016-03-10 11:26:44 +01:00
parent d9f2e282be
commit d9da9ec634

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, gnum4 }:
{ stdenv, fetchurl, fetchpatch, pkgconfig, gnum4 }:
let
ver_maj = "2.6"; # odd major numbers are unstable
ver_min = "2";
@ -10,6 +10,11 @@ stdenv.mkDerivation rec {
url = "mirror://gnome/sources/libsigc++/${ver_maj}/${name}.tar.xz";
sha256 = "fdace7134c31de792c17570f9049ca0657909b28c4c70ec4882f91a03de54437";
};
patches = [(fetchpatch {
url = "https://anonscm.debian.org/cgit/collab-maint/libsigc++-2.0.git/plain"
+ "/debian/patches/0002-Enforce-c-11-via-pkg-config.patch?id=d451a4d195b1";
sha256 = "19g19473syp2z3kg8vdrli89lm9kcvaqajkqfmdig1vfpkbq0nci";
})];
nativeBuildInputs = [ pkgconfig gnum4 ];