aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/aws-sdk-cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* aws-sdk-cpp: Fix library and include paths in generated cmake filesTQ Hirsch2020-04-142-0/+82
| | | | | | | | | | | | | | | | | | | AWS's SDK by default tries to prepend its install root to each of the library paths; this obviously fails with the absolute paths that Nix gives it. Worse, it computes the installation root by walking up the filesystem from its cmake file, so even if the AWSSDK_ROOT_DIR is explicitly set to the root directory, it gets replaced with the path to the derivation's dev output. This is all fixed with a patch to the cmake files that generate the installed configuration. Once this is fixed, it *still* doesn't work because the export generator built into cmake insists on adding `$out/include` to the header search path; when importing this configuration in another package, cmake will fail because `$out/include` doesn't exist (After all, it was relocated by a fixup hook). A small postFixupHook will recreate the directory and make cmake happy.
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-101-1/+1
|
* aws-sdk-cpp: fix build with gcc9Franz Pletz2019-11-021-0/+3
|
* aws-sdk-cpp: fixing hydra buildDima2019-10-091-1/+0
| | | | | | | Removing debug info to fix hydra build. The debug symbols alone are around ~1.8GB in size, which makes the closure combined with the other two outputs too large.
* aws-sdk-cpp: fix libatomic detectionMatthew Bauer2019-09-221-1/+8
| | | | | | Needed for https://hydra.nixos.org/build/100470050 /cc @lopsided98
* treewide: name -> pname (easy cases) (#66585)volth2019-08-151-1/+1
| | | | | | | | | treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
* aws-sdk-cpp: fix cross compilationJustin Humm2019-05-141-3/+5
| | | | | | | | aws-sdk-cpp tries to run code at build time using check_c_source_runs [0] and therefore needs to be told about the expected exit code [1]. [0] https://cmake.org/cmake/help/latest/module/CheckCSourceRuns.html [1] https://cmake.org/cmake/help/latest/command/try_run.html#behavior-when-cross-compiling
* aws-sdk-cpp: 1.7.56 -> 1.7.90R. RyanTM2019-04-301-2/+2
| | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions
* aws-sdk-cpp: 1.7.53 -> 1.7.56 (#56595)R. RyanTM2019-04-081-2/+2
| | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions
* aws-sdk-cpp: 1.7.49 -> 1.7.53Orivej Desh2019-02-191-2/+2
|
* aws-sdk-cpp: 1.6.52 -> 1.7.49Orivej Desh2019-02-141-31/+17
| | | | | | Since 1.7.0 it requires new aws-c* dependencies: https://github.com/aws/aws-sdk-cpp/releases/tag/1.7.0 https://github.com/aws/aws-sdk-cpp/commit/ffd81252bec92f3e0587e144b07c05f8aed28eb1
* aws-sdk-cpp: fix darwin sandbox buildDaiderd Jordan2019-02-121-3/+5
| | | | | The tests use localhost networking, which is disallowed by default in the darwin sandbox.
* aws-sdk-cpp: 1.6.20 -> 1.6.52Orivej Desh2018-11-151-2/+2
|
* aws-sdk-cpp: 1.5.17 -> 1.6.20R. RyanTM2018-10-161-2/+2
| | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions
* aws-sdk-cpp: 1.4.82 -> 1.5.17R. RyanTM2018-08-241-2/+2
| | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions.
* aws-sdk-cpp: 1.4.78 -> 1.4.82R. RyanTM2018-07-111-2/+2
| | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions.
* aws-sdk-cpp: 1.4.70 -> 1.4.78R. RyanTM2018-07-041-2/+2
| | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 1.4.78 with grep in /nix/store/5jxaryh2w692r3a20nijn5q7zc2xd43v-aws-sdk-cpp-1.4.78 - directory tree listing: https://gist.github.com/9e9bda76c45da3aee968472e112d51dc - du listing: https://gist.github.com/890b235c67a7057ba2a51cd58db3c0fa
* aws-sdk-cpp: 1.4.65 -> 1.4.70R. RyanTM2018-06-241-2/+2
| | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 1.4.70 with grep in /nix/store/az7vd5kvng3vgvdgn2ayk75and1gz4ll-aws-sdk-cpp-1.4.70 - directory tree listing: https://gist.github.com/d3c4e72fb9bc640c6c78344c7b6630b6 - du listing: https://gist.github.com/63d41f84084209f15d11cb23e00e5c3c
* aws-sdk-cpp: 1.4.60 -> 1.4.65R. RyanTM2018-06-141-2/+2
| | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 1.4.65 with grep in /nix/store/g0zw6fdmf5flpnd5mqqjk373ndlq1zwd-aws-sdk-cpp-1.4.65 - directory tree listing: https://gist.github.com/78023eae3b6e7a16a3b9e7fb7fdba55b - du listing: https://gist.github.com/2f4c13728002e11c5b08a8bc5658c21c
* aws-sdk-cpp: 1.4.50 -> 1.4.60Will Dietz2018-06-071-2/+2
|
* aws-sdk-cpp: 1.4.40 -> 1.4.50 (#40694)R. RyanTM2018-06-021-2/+2
| | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 1.4.50 with grep in /nix/store/kg9d5flfl989yxfcppyq886g60mfhpzy-aws-sdk-cpp-1.4.50 - directory tree listing: https://gist.github.com/2faf1d98f152431438b23c93bd489e09 - du listing: https://gist.github.com/9df0b904ab22201191bb2261798bb0a3
* aws-sdk-cpp: 1.4.33 -> 1.4.40R. RyanTM2018-05-021-2/+2
| | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.4.40 with grep in /nix/store/gd2sihwpr8xipj6k5ych7gzj6024kc54-aws-sdk-cpp-1.4.40 - directory tree listing: https://gist.github.com/559971e38c15ec82c70c6d9f6f785465
* aws-sdk-cpp: 1.4.24 -> 1.4.33R. RyanTM2018-04-201-2/+2
| | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.4.33 with grep in /nix/store/plknjymzss3c8bfcjfhjmlkf9icgkz7v-aws-sdk-cpp-1.4.33 - directory tree listing: https://gist.github.com/d510b62973cdf67e2ed76e170a388918
* aws-sdk-cpp: 1.4.15 -> 1.4.24R. RyanTM2018-03-311-2/+2
| | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-sdk-cpp/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.4.24 with grep in /nix/store/l5b5v0apdlpjby67kzzrvi6gqfvccal8-aws-sdk-cpp-1.4.24 - directory tree listing: https://gist.github.com/a9ed6bbccf52e2bbd300e219ff1f892e
* aws-sdk-cpp: 1.4.10 -> 1.4.15Will Dietz2018-03-191-2/+2
|
* aws-sdk-cpp: 1.3.22 -> 1.4.10Ryan Mulligan2018-03-161-2/+2
| | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.4.10 with grep in /nix/store/qb91mvvbzd45xcnd640m0wq8z915d257-aws-sdk-cpp-1.4.10
* aws-sdk-cpp: fixup build with gcc7Vladimír Čunát2018-02-181-0/+2
| | | | Hydra will need more complicated fixups.
* aws-sdk-cpp: fix on darwinMatthew Bauer2018-02-171-1/+6
|
* aws-sdk-cpp: disable tests on crossWill Dietz2018-02-131-0/+1
|
* aws-sdk-cpp: Enable cross-compilationBen Gamari2018-01-051-5/+2
|
* aws-sdk-cpp: 1.1.18 -> 1.3.22Eelco Dolstra2017-12-141-2/+2
|
* aws-sdk-cpp: 1.1.7 -> 1.1.18Robin Gloster2017-08-041-2/+2
|
* aws-sdk-cpp: 1.0.153 -> 1.1.7Robin Gloster2017-08-041-2/+2
|
* Enable some more debug infoEelco Dolstra2017-07-051-0/+1
|
* aws-sdk-cpp: Better fix for the failing credentials testEelco Dolstra2017-06-191-1/+4
|
* aws-sdk-cpp: 1.0.127 -> 1.0.153Eelco Dolstra2017-06-161-2/+2
|
* aws-sdk-cpp: Fix credentials testEelco Dolstra2017-06-161-0/+2
| | | | | | These require a home directory. http://hydra.nixos.org/build/54519006
* aws-sdk-cpp: 1.0.60 -> 1.0.127Eelco Dolstra2017-05-221-2/+2
|
* aws-sdk-cpp: 1.0.48 -> 1.0.60Dan Peebles2017-02-021-2/+2
|
* aws-sdk-cpp: fix on darwinDan Peebles2017-02-021-2/+10
| | | | | | The LD_LIBRARY_PATH variable does nothing on Darwin, but DYLD_LIBRARY_PATH does the same thing, so splice in the right variable based on which system we're working on.
* aws-sdk-cpp: 1.0.43 -> 1.0.48Eelco Dolstra2016-12-292-22/+2
|
* aws-sdk-cpp: 1.0.34 -> 1.0.43Eelco Dolstra2016-12-222-6/+26
| | | | Since this drops the problematic libuuid dependency, enable on Darwin.
* Revert "aws-sdk-cpp: Enable on Darwin systems"Daiderd Jordan2016-12-151-1/+1
| | | | This reverts commit 5b2e289c0a688d3c0e12693f356d550cf5308065.
* aws-sdk-cpp: Enable on Darwin systemsMatthew Bauer2016-12-141-1/+1
| | | | libuuid can be provided by libossp_uuid.
* aws-sdk-cpp: Use multiple outputsEelco Dolstra2016-12-081-0/+4
|
* aws-sdk-cpp: 0.10.6 -> 1.0.34Eelco Dolstra2016-11-281-15/+8
|
* aws-sdk-cpp: add compile flag -fpermissive due to libcurl upgradeobadz2016-07-311-0/+4
| | | | | curl upgrade to 7.50.0 (#17152) changes the libcurl headers slightly and therefore requires the followin flag until this package gets updated
* aws-sdk-cpp: 0.9.6 -> 0.10.6Eelco Dolstra2016-04-211-2/+2
|
* aws-sdk-cpp: Allow building some APIS and disabling custom memory managementEelco Dolstra2016-02-181-4/+10
|
* aws-sdk-cpp: Init at 0.9.6Eelco Dolstra2016-02-161-0/+44