mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
1b6764da4e
Except for caqti-type-calendar, whose most recent version number is 1.2.0.
27 lines
707 B
Nix
27 lines
707 B
Nix
{ lib, fetchFromGitHub, buildDunePackage, cppo, logs, ptime, uri }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "caqti";
|
|
version = "1.3.0";
|
|
useDune2 = true;
|
|
|
|
minimumOCamlVersion = "4.04";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "paurkedal";
|
|
repo = "ocaml-${pname}";
|
|
rev = "v${version}";
|
|
sha256 = "1ksjchfjnh059wvd95my1sv9b0ild0dfaiynbf2xsaz7zg1y4xmw";
|
|
};
|
|
|
|
buildInputs = [ cppo ];
|
|
propagatedBuildInputs = [ logs ptime uri ];
|
|
|
|
meta = {
|
|
description = "Unified interface to relational database libraries";
|
|
license = "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception";
|
|
maintainers = with lib.maintainers; [ bcc32 ];
|
|
homepage = "https://github.com/paurkedal/ocaml-caqti";
|
|
};
|
|
}
|