1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #153639 from c0bw3b/pkg/rethinkdb

rethinkdb: pin Boost dep to boost170
This commit is contained in:
Bobby Rong 2022-01-06 12:38:27 +08:00 committed by GitHub
commit 75901672f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
{ lib, stdenv, fetchurl, which, m4
, protobuf, boost, zlib, curl, openssl, icu, jemalloc, libtool
, protobuf, boost170, zlib, curl, openssl, icu, jemalloc, libtool
, python2Packages, makeWrapper
}:
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
makeFlags = [ "rethinkdb" ];
buildInputs = [ protobuf boost zlib curl openssl icu ]
buildInputs = [ protobuf boost170 zlib curl openssl icu ]
++ lib.optional (!stdenv.isDarwin) jemalloc
++ lib.optional stdenv.isDarwin libtool;
@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
query language that supports really useful queries like table
joins and group by, and is easy to setup and learn.
'';
homepage = "http://www.rethinkdb.com";
homepage = "https://rethinkdb.com";
license = lib.licenses.asl20;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ thoughtpolice bluescreen303 ];