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.
14 lines
278 B
Nix
14 lines
278 B
Nix
{ lib, buildDunePackage, caqti }:
|
|
|
|
buildDunePackage {
|
|
pname = "caqti-dynload";
|
|
useDune2 = true;
|
|
inherit (caqti) version src;
|
|
|
|
propagatedBuildInputs = [ caqti ];
|
|
|
|
meta = caqti.meta // {
|
|
description = "Dynamic linking of Caqti drivers using findlib.dynload";
|
|
};
|
|
}
|