mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
22 lines
549 B
Nix
22 lines
549 B
Nix
{ buildDunePackage, callPackage, reason, console, ... }:
|
|
|
|
{
|
|
pname = "console";
|
|
|
|
nativeBuildInputs = [
|
|
reason
|
|
];
|
|
|
|
passthru.tests = {
|
|
console = callPackage ./tests/console {
|
|
inherit buildDunePackage reason console;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "A library providing a web-influenced polymorphic console API for native Console.log(anything) with runtime printing";
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/console";
|
|
homepage = "https://reason-native.com/docs/console/";
|
|
};
|
|
}
|