summary refs log tree commit diff
path: root/pkgs/development/libraries/boost/generic.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-10-16 21:51:48 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-10-16 21:51:48 -0500
commit0397453f1a8145d68e9627ad7f2e39d57732c651 (patch)
tree5db007aeec05d7120f6bdb4269f9a16b6ef550be /pkgs/development/libraries/boost/generic.nix
parentb3041b44552f50109760e7fa41a16636e4b4d5c0 (diff)
downloadnixpkgs-0397453f1a8145d68e9627ad7f2e39d57732c651.tar
nixpkgs-0397453f1a8145d68e9627ad7f2e39d57732c651.tar.gz
nixpkgs-0397453f1a8145d68e9627ad7f2e39d57732c651.tar.bz2
nixpkgs-0397453f1a8145d68e9627ad7f2e39d57732c651.tar.lz
nixpkgs-0397453f1a8145d68e9627ad7f2e39d57732c651.tar.xz
nixpkgs-0397453f1a8145d68e9627ad7f2e39d57732c651.tar.zst
nixpkgs-0397453f1a8145d68e9627ad7f2e39d57732c651.zip
boost: remove broken patch
the boost url is broken - remove for now
Diffstat (limited to 'pkgs/development/libraries/boost/generic.nix')
-rw-r--r--pkgs/development/libraries/boost/generic.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix
index 1ab0718e796..609e240e0c2 100644
--- a/pkgs/development/libraries/boost/generic.nix
+++ b/pkgs/development/libraries/boost/generic.nix
@@ -101,21 +101,15 @@ stdenv.mkDerivation {
 
   inherit src;
 
-  patchFlags = optionalString (stdenv.hostPlatform.libc == "msvcrt") "-p0";
   patches = patches
-    ++ 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";
-    });
+    ++ optional stdenv.isDarwin ./darwin-no-system-python.patch;
 
   meta = {
     homepage = http://boost.org/;
     description = "Collection of C++ libraries";
     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 ];
   };