mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
ocamlPackages.sqlite3: use Dune 2
This commit is contained in:
parent
c50e680b03
commit
cf42b2eb0f
@ -1,8 +1,9 @@
|
||||
{ lib, fetchurl, sqlite, pkg-config, buildDunePackage }:
|
||||
{ lib, fetchurl, sqlite, pkg-config, buildDunePackage, dune-configurator }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "sqlite3";
|
||||
version = "5.0.2";
|
||||
useDune2 = true;
|
||||
minimumOCamlVersion = "4.05";
|
||||
|
||||
src = fetchurl {
|
||||
@ -11,7 +12,7 @@ buildDunePackage rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ sqlite ];
|
||||
buildInputs = [ dune-configurator sqlite ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://mmottl.github.io/sqlite3-ocaml/";
|
||||
|
Loading…
Reference in New Issue
Block a user