3
0
Fork 0
forked from mirrors/nixpkgs

duckdb: build with ninja

This commit is contained in:
Phillip Cloud 2022-02-11 15:53:27 -05:00
parent c8fce94f42
commit 5f97d6b8e6
No known key found for this signature in database
GPG key ID: D908212070FD785E

View file

@ -1,6 +1,7 @@
{ lib, stdenv
, fetchFromGitHub
, cmake
, ninja
}:
stdenv.mkDerivation rec {
@ -14,7 +15,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-F5YOqDeY3rgcnuu5SNqOfUxhsaXgqvdJZTnD1unI0tc=";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake ninja ];
meta = with lib; {
homepage = "https://github.com/duckdb/duckdb";