mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 19:23:50 +00:00
22 lines
543 B
Nix
22 lines
543 B
Nix
|
{ buildDunePackage, callPackage, reason, console, ... }:
|
||
|
|
||
|
{
|
||
|
pname = "console";
|
||
|
|
||
|
buildInputs = [
|
||
|
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/";
|
||
|
};
|
||
|
}
|