Merge pull request #142548 from NickCao/duckdb

conduit-nginx
Sandro 2021-10-22 13:14:49 +02:00 committed by GitHub
commit c961381f4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -5,19 +5,19 @@
stdenv.mkDerivation rec {
pname = "duckdb";
version = "0.2.9";
version = "0.3.0";
src = fetchFromGitHub {
owner = "cwida";
repo = "duckdb";
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-ID65xpNSDyi19OcOs9Gdf5xpK++UVWclp8pVggIWQNU=";
sha256 = "sha256-SvihG6PdHQ+03JAXdkuzvGug4lw0ngcxYigS7R7yK9g=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
homepage = "https://github.com/cwida/duckdb";
homepage = "https://github.com/duckdb/duckdb";
description = "Embeddable SQL OLAP Database Management System";
license = licenses.mit;
platforms = platforms.all;