uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
11
pkgs/development/ocaml-modules/caqti/async.nix
Normal file
11
pkgs/development/ocaml-modules/caqti/async.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ lib, buildDunePackage, async_kernel, async_unix, caqti, core_kernel }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "caqti-async";
|
||||
useDune2 = true;
|
||||
inherit (caqti) version src;
|
||||
|
||||
propagatedBuildInputs = [ async_kernel async_unix caqti core_kernel ];
|
||||
|
||||
meta = caqti.meta // { description = "Async support for Caqti"; };
|
||||
}
|
||||
31
pkgs/development/ocaml-modules/caqti/default.nix
Normal file
31
pkgs/development/ocaml-modules/caqti/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib, fetchFromGitHub, buildDunePackage
|
||||
, cppo, logs, ptime, uri, bigstringaf
|
||||
, re, cmdliner, alcotest }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "caqti";
|
||||
version = "1.8.0";
|
||||
useDune2 = true;
|
||||
|
||||
minimumOCamlVersion = "4.04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "paurkedal";
|
||||
repo = "ocaml-${pname}";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-8uKlrq9j1Z3QzkCyoRIn2j6wCdGyo7BY7XlbFHN1xVE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cppo ];
|
||||
propagatedBuildInputs = [ logs ptime uri bigstringaf ];
|
||||
checkInputs = [ re cmdliner alcotest ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
||||
13
pkgs/development/ocaml-modules/caqti/driver-mariadb.nix
Normal file
13
pkgs/development/ocaml-modules/caqti/driver-mariadb.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ lib, buildDunePackage, caqti, mariadb }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "caqti-driver-mariadb";
|
||||
useDune2 = true;
|
||||
inherit (caqti) version src;
|
||||
|
||||
propagatedBuildInputs = [ caqti mariadb ];
|
||||
|
||||
meta = caqti.meta // {
|
||||
description = "MariaDB driver for Caqti using C bindings";
|
||||
};
|
||||
}
|
||||
13
pkgs/development/ocaml-modules/caqti/driver-postgresql.nix
Normal file
13
pkgs/development/ocaml-modules/caqti/driver-postgresql.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ lib, buildDunePackage, caqti, postgresql }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "caqti-driver-postgresql";
|
||||
useDune2 = true;
|
||||
inherit (caqti) version src;
|
||||
|
||||
propagatedBuildInputs = [ caqti postgresql ];
|
||||
|
||||
meta = caqti.meta // {
|
||||
description = "PostgreSQL driver for Caqti based on C bindings";
|
||||
};
|
||||
}
|
||||
13
pkgs/development/ocaml-modules/caqti/driver-sqlite3.nix
Normal file
13
pkgs/development/ocaml-modules/caqti/driver-sqlite3.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ lib, buildDunePackage, caqti, ocaml_sqlite3 }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "caqti-driver-sqlite3";
|
||||
useDune2 = true;
|
||||
inherit (caqti) version src;
|
||||
|
||||
propagatedBuildInputs = [ caqti ocaml_sqlite3 ];
|
||||
|
||||
meta = caqti.meta // {
|
||||
description = "Sqlite3 driver for Caqti using C bindings";
|
||||
};
|
||||
}
|
||||
13
pkgs/development/ocaml-modules/caqti/dynload.nix
Normal file
13
pkgs/development/ocaml-modules/caqti/dynload.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ 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";
|
||||
};
|
||||
}
|
||||
11
pkgs/development/ocaml-modules/caqti/lwt.nix
Normal file
11
pkgs/development/ocaml-modules/caqti/lwt.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ lib, buildDunePackage, caqti, logs, lwt }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "caqti-lwt";
|
||||
useDune2 = true;
|
||||
inherit (caqti) version src;
|
||||
|
||||
propagatedBuildInputs = [ caqti logs lwt ];
|
||||
|
||||
meta = caqti.meta // { description = "Lwt support for Caqti"; };
|
||||
}
|
||||
14
pkgs/development/ocaml-modules/caqti/type-calendar.nix
Normal file
14
pkgs/development/ocaml-modules/caqti/type-calendar.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ lib, buildDunePackage, calendar, caqti }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "caqti-type-calendar";
|
||||
version = "1.2.0";
|
||||
useDune2 = true;
|
||||
inherit (caqti) src;
|
||||
|
||||
propagatedBuildInputs = [ calendar caqti ];
|
||||
|
||||
meta = caqti.meta // {
|
||||
description = "Date and time field types using the calendar library";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue