nixpkgs/pkgs/development/ocaml-modules/caqti/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
886 B
Nix
Raw Normal View History

2022-10-02 07:06:37 +00:00
{ lib, fetchurl, buildDunePackage, ocaml
2022-04-21 12:11:01 +00:00
, cppo, logs, ptime, uri, bigstringaf
, re, cmdliner, alcotest
}:
buildDunePackage rec {
pname = "caqti";
2022-10-02 07:06:37 +00:00
version = "1.9.1";
2022-10-02 07:06:37 +00:00
minimalOCamlVersion = "4.04";
2023-04-05 04:17:18 +00:00
duneVersion = "3";
2022-10-02 07:06:37 +00:00
src = fetchurl {
url = "https://github.com/paurkedal/ocaml-caqti/releases/download/v${version}/caqti-v${version}.tbz";
sha256 = "sha256-PQBgJBNx3IcE6/vyNIf26a2xStU22LBhff8eM6UPaJ4=";
};
nativeBuildInputs = [ cppo ];
2022-04-21 12:11:01 +00:00
propagatedBuildInputs = [ logs ptime uri bigstringaf ];
checkInputs = [ re cmdliner alcotest ];
2022-04-21 12:11:01 +00:00
2022-08-23 06:04:50 +00:00
doCheck = lib.versionAtLeast ocaml.version "4.08";
meta = {
description = "Unified interface to relational database libraries";
license = with lib.licenses; [ lgpl3Plus ocamlLgplLinkingException ];
maintainers = with lib.maintainers; [ bcc32 ];
homepage = "https://github.com/paurkedal/ocaml-caqti";
};
}