lol

Merge pull request #124851 from veprbl/pr/arrow-cpp_4_0_1

arrow-cpp: 4.0.0 -> 4.0.1

authored by

Dmitry Kalinkin and committed by
GitHub
2e25af35 2402d70e

+6 -6
+6 -6
pkgs/development/libraries/arrow-cpp/default.nix
··· 22 22 23 23 in stdenv.mkDerivation rec { 24 24 pname = "arrow-cpp"; 25 - version = "4.0.0"; 25 + version = "4.0.1"; 26 26 27 27 src = fetchurl { 28 28 url = 29 29 "mirror://apache/arrow/arrow-${version}/apache-arrow-${version}.tar.gz"; 30 - sha256 = "1bj9jr0pgq9f2nyzqiyj3cl0hcx3c83z2ym6rpdkp59ff2zx0caa"; 30 + sha256 = "0vl926i6jvsvj5vigdgqzp9v1i1h5zzj1abqr6qwc9drfsibzk3m"; 31 31 }; 32 32 sourceRoot = "apache-arrow-${version}/cpp"; 33 33 ··· 146 146 --exclude-regex '^(${builtins.concatStringsSep "|" excludedTests})$' 147 147 ''; 148 148 149 - meta = { 149 + meta = with lib; { 150 150 description = "A cross-language development platform for in-memory data"; 151 151 homepage = "https://arrow.apache.org/"; 152 - license = lib.licenses.asl20; 153 - platforms = lib.platforms.unix; 154 - maintainers = with lib.maintainers; [ tobim veprbl ]; 152 + license = licenses.asl20; 153 + platforms = platforms.unix; 154 + maintainers = with maintainers; [ tobim veprbl ]; 155 155 }; 156 156 }