duckdb: 0.2.9 -> 0.3.0

conduit-nginx
Nick Cao 2021-10-22 16:42:51 +08:00
parent 2810c8a6cc
commit aa4bd9aacd
No known key found for this signature in database
GPG Key ID: 068A56CEF48FA2C1
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;