about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/6/libc++abi.nix
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2020-02-25 14:37:25 +0100
committerGabor Greif <ggreif@gmail.com>2020-04-05 12:37:24 +0200
commite336bdf80e758eee6415196bf2340dc0980681c8 (patch)
treeee442f19e1dea67c47afe6cc661e6ee7a3cb0bb9 /pkgs/development/compilers/llvm/6/libc++abi.nix
parentf91b34e53e7c2be57acdf2ad62715454f62ded04 (diff)
downloadnixlib-e336bdf80e758eee6415196bf2340dc0980681c8.tar
nixlib-e336bdf80e758eee6415196bf2340dc0980681c8.tar.gz
nixlib-e336bdf80e758eee6415196bf2340dc0980681c8.tar.bz2
nixlib-e336bdf80e758eee6415196bf2340dc0980681c8.tar.lz
nixlib-e336bdf80e758eee6415196bf2340dc0980681c8.tar.xz
nixlib-e336bdf80e758eee6415196bf2340dc0980681c8.tar.zst
nixlib-e336bdf80e758eee6415196bf2340dc0980681c8.zip
llvmPackages: change homepages to https:// scheme
also: https://www.cmake.org/Wiki/CMake_RPATH_handling has moved
Diffstat (limited to 'pkgs/development/compilers/llvm/6/libc++abi.nix')
-rw-r--r--pkgs/development/compilers/llvm/6/libc++abi.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/llvm/6/libc++abi.nix b/pkgs/development/compilers/llvm/6/libc++abi.nix
index ac1f4f653e6a..7c6d8974bbd0 100644
--- a/pkgs/development/compilers/llvm/6/libc++abi.nix
+++ b/pkgs/development/compilers/llvm/6/libc++abi.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
         # this should be done in CMake, but having trouble figuring out
         # the magic combination of necessary CMake variables
         # if you fancy a try, take a look at
-        # http://www.cmake.org/Wiki/CMake_RPATH_handling
+        # https://gitlab.kitware.com/cmake/community/-/wikis/doc/cmake/RPATH-handling
         install_name_tool -id $out/$file $file
       done
       make install
@@ -42,7 +42,7 @@ stdenv.mkDerivation {
     '';
 
   meta = {
-    homepage = http://libcxxabi.llvm.org/;
+    homepage = https://libcxxabi.llvm.org/;
     description = "A new implementation of low level support for a standard C++ library";
     license = with stdenv.lib.licenses; [ ncsa mit ];
     maintainers = with stdenv.lib.maintainers; [ vlstill ];