mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
boost: remove broken patch
the boost url is broken - remove for now
This commit is contained in:
parent
b3041b4455
commit
0397453f1a
@ -101,21 +101,15 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
inherit src;
|
inherit src;
|
||||||
|
|
||||||
patchFlags = optionalString (stdenv.hostPlatform.libc == "msvcrt") "-p0";
|
|
||||||
patches = patches
|
patches = patches
|
||||||
++ optional stdenv.isDarwin ./darwin-no-system-python.patch
|
++ optional stdenv.isDarwin ./darwin-no-system-python.patch;
|
||||||
++ optional (stdenv.hostPlatform.libc == "msvcrt") (fetchurl {
|
|
||||||
url = "https://svn.boost.org/trac/boost/raw-attachment/tickaet/7262/"
|
|
||||||
+ "boost-mingw.patch";
|
|
||||||
sha256 = "0s32kwll66k50w6r5np1y5g907b7lcpsjhfgr7rsw7q5syhzddyj";
|
|
||||||
});
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://boost.org/;
|
homepage = http://boost.org/;
|
||||||
description = "Collection of C++ libraries";
|
description = "Collection of C++ libraries";
|
||||||
license = stdenv.lib.licenses.boost;
|
license = stdenv.lib.licenses.boost;
|
||||||
|
|
||||||
platforms = (if versionOlder version "1.59" then remove "aarch64-linux" else id) platforms.unix;
|
platforms = (if versionOlder version "1.59" then remove "aarch64-linux" else id) platforms.all;
|
||||||
maintainers = with maintainers; [ peti wkennington ];
|
maintainers = with maintainers; [ peti wkennington ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user