about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2021-05-30 19:58:44 -0400
committerGitHub <noreply@github.com>2021-05-30 19:58:44 -0400
commit2e25af3546106dc8ef62bdfd9d89a2bfa2a44174 (patch)
tree9e5817dfdcac5eb0c83a0be939c4059ebb304263 /pkgs
parent2402d70ef36cb7b09575c7e21bd8ee70ec76d259 (diff)
parentcff04883e8c21fe614dad85a96b3da93909eb8c8 (diff)
Merge pull request #124851 from veprbl/pr/arrow-cpp_4_0_1
arrow-cpp: 4.0.0 -> 4.0.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/arrow-cpp/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/libraries/arrow-cpp/default.nix b/pkgs/development/libraries/arrow-cpp/default.nix
index ac53ae3bbd448..a13ebf2819349 100644
--- a/pkgs/development/libraries/arrow-cpp/default.nix
+++ b/pkgs/development/libraries/arrow-cpp/default.nix
@@ -22,12 +22,12 @@ let
 
 in stdenv.mkDerivation rec {
   pname = "arrow-cpp";
-  version = "4.0.0";
+  version = "4.0.1";
 
   src = fetchurl {
     url =
       "mirror://apache/arrow/arrow-${version}/apache-arrow-${version}.tar.gz";
-    sha256 = "1bj9jr0pgq9f2nyzqiyj3cl0hcx3c83z2ym6rpdkp59ff2zx0caa";
+    sha256 = "0vl926i6jvsvj5vigdgqzp9v1i1h5zzj1abqr6qwc9drfsibzk3m";
   };
   sourceRoot = "apache-arrow-${version}/cpp";
 
@@ -146,11 +146,11 @@ in stdenv.mkDerivation rec {
       --exclude-regex '^(${builtins.concatStringsSep "|" excludedTests})$'
   '';
 
-  meta = {
+  meta = with lib; {
     description = "A  cross-language development platform for in-memory data";
     homepage = "https://arrow.apache.org/";
-    license = lib.licenses.asl20;
-    platforms = lib.platforms.unix;
-    maintainers = with lib.maintainers; [ tobim veprbl ];
+    license = licenses.asl20;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ tobim veprbl ];
   };
 }