Skip to content

Commit

Permalink
Merge branch 'staging-19.03' into release-19.03
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Jul 16, 2019
2 parents e2ad04c + be61b5b commit 2fc18e7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
Expand Up @@ -83,8 +83,8 @@
_osx_support.customize_compiler(_config_vars)
_config_vars['CUSTOMIZED_OSX_COMPILER'] = 'True'

- (cc, cxx, opt, cflags, ccshared, ldshared, shlib_suffix, ar, ar_flags) = \
- get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS',
- (cc, cxx, cflags, ccshared, ldshared, shlib_suffix, ar, ar_flags) = \
- get_config_vars('CC', 'CXX', 'CFLAGS',
- 'CCSHARED', 'LDSHARED', 'SHLIB_SUFFIX', 'AR', 'ARFLAGS')
+ (cc, cxx, cflags, ccshared, ldshared, ldcxxshared, shlib_suffix, ar, ar_flags) = \
+ get_config_vars('CC', 'CXX', 'CFLAGS', 'CCSHARED', 'LDSHARED', 'LDCXXSHARED',
Expand All @@ -108,7 +108,7 @@
ldshared = ldshared + ' ' + os.environ['LDFLAGS']
+ ldcxxshared = ldcxxshared + ' ' + os.environ['LDFLAGS']
if 'CFLAGS' in os.environ:
- cflags = opt + ' ' + os.environ['CFLAGS']
- cflags = cflags + ' ' + os.environ['CFLAGS']
+ cflags = os.environ['CFLAGS']
ldshared = ldshared + ' ' + os.environ['CFLAGS']
+ if 'CXXFLAGS' in os.environ:
Expand Down
8 changes: 4 additions & 4 deletions pkgs/development/interpreters/python/default.nix
Expand Up @@ -76,10 +76,10 @@ in {
sourceVersion = {
major = "3";
minor = "6";
patch = "8";
patch = "9";
suffix = "";
};
sha256 = "14qi6n5gpcjnwy165wi9hkfcmbadc95ny6bxxldknxwmx50n4i1m";
sha256 = "1nkh70azbv866aw5a9bbxsxarsf40233vrzpjq17z3rz9ramybsy";
inherit (darwin) CF configd;
inherit passthruFun;
};
Expand All @@ -89,10 +89,10 @@ in {
sourceVersion = {
major = "3";
minor = "7";
patch = "3";
patch = "4";
suffix = "";
};
sha256 = "066ka8csjwkycqpgyv424d8hhqhfd7r6svsp4sfcvkylci0baq6s";
sha256 = "0gxiv5617zd7dnqm5k9r4q2188lk327nf9jznwq9j6b8p0s92ygv";
inherit (darwin) CF configd;
inherit passthruFun;
};
Expand Down
6 changes: 6 additions & 0 deletions pkgs/development/libraries/glib/default.nix
Expand Up @@ -91,6 +91,12 @@ stdenv.mkDerivation rec {
name = "CVE-2019-12450.patch";
sha256 = "03ris8lllbb7i18qvbpqaf7xdwfz1dkskx8mb533dmwlp2ll69hg";
})
# https://gitlab.gnome.org/GNOME/glib/issues/1658
(fetchpatch {
name = "CVE-2019-13012.patch";
url = "https://gitlab.gnome.org/GNOME/glib/commit/5e4da714f00f6bfb2ccd6d73d61329c6f3a08429.patch";
sha256 = "0ykfx9i1ipz06n7hvz27qw0l9hy9jslg5gqqxyfiivy81q4p7lnl";
})
];

outputs = [ "bin" "out" "dev" "devdoc" ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/libraries/nss/default.nix
Expand Up @@ -5,7 +5,7 @@ let
url = http://dev.gentoo.org/~polynomial-c/mozilla/nss-3.15.4-pem-support-20140109.patch.xz;
sha256 = "10ibz6y0hknac15zr6dw4gv9nb5r5z9ym6gq18j3xqx7v7n3vpdw";
};
version = "3.42.1";
version = "3.44.1";
underscoreVersion = builtins.replaceStrings ["."] ["_"] version;

in stdenv.mkDerivation rec {
Expand All @@ -14,7 +14,7 @@ in stdenv.mkDerivation rec {

src = fetchurl {
url = "mirror://mozilla/security/nss/releases/NSS_${underscoreVersion}_RTM/src/${name}.tar.gz";
sha256 = "1ihzqspvqjmysp1c15xxr7kqvj3zm9dqnanxhkaxyjgx71yv6z88";
sha256 = "1y0jvva4s3j7cjz22kqw2lsml0an1295bgpc2raf7kc9r60cpr7w";
};

buildInputs = [ perl zlib sqlite ]
Expand Down

0 comments on commit 2fc18e7

Please sign in to comment.