ocamlPackages.spices: init at 0.0.2

This commit is contained in:
Vincent Laporte 2024-05-22 07:20:47 +02:00 committed by Vincent Laporte
parent 7b7fe79bd9
commit 3f656c8d99
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildDunePackage
, fetchurl
, colors
, tty
}:
buildDunePackage rec {
pname = "spices";
version = "0.0.2";
minimalOCamlVersion = "5.1";
src = fetchurl {
url = "https://github.com/leostera/minttea/releases/download/${version}/minttea-${version}.tbz";
hash = "sha256-0eB7OuxcPdv9bf2aIQEeir44mQfx5W2AJj7Vb4pGtLI=";
};
propagatedBuildInputs = [
colors
tty
];
doCheck = true;
meta = {
description = "Declarative styles for TUI applications";
homepage = "https://github.com/leostera/minttea";
changelog = "https://github.com/leostera/minttea/blob/${version}/CHANGES.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};
}

View File

@ -1716,6 +1716,8 @@ let
spelll = callPackage ../development/ocaml-modules/spelll { };
spices = callPackage ../development/ocaml-modules/spices { };
srt = callPackage ../development/ocaml-modules/srt {
inherit (pkgs) srt;
};