We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4655f1 commit 9161b89Copy full SHA for 9161b89
pkgs/development/libraries/cassandra-cpp-driver/default.nix
@@ -1,5 +1,6 @@
1
{
2
fetchFromGitHub,
3
+ fetchpatch,
4
lib,
5
stdenv,
6
cmake,
@@ -20,6 +21,15 @@ stdenv.mkDerivation rec {
20
21
sha256 = "sha256-GuvmKHJknudyn7ahrn/8+kKUA4NW5UjCfkYoX3aTE+Q=";
22
};
23
24
+ patches = [
25
+ # https://github.com/apache/cassandra-cpp-driver/pull/580
26
+ (fetchpatch {
27
+ name = "fix-cmake-version.patch";
28
+ url = "https://github.com/apache/cassandra-cpp-driver/commit/a4061051bcdfa0a67117b546897552c38493d545.patch?full_index=1";
29
+ hash = "sha256-hQhm2SYLd8uPC85/iOH3sEM2KvoIGwV+9NGIJFnZJhc=";
30
+ })
31
+ ];
32
+
33
nativeBuildInputs = [
34
cmake
35
pkg-config
0 commit comments