depot/third_party/nixpkgs/pkgs/development/ocaml-modules/spices/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

34 lines
687 B
Nix

{ 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 = [ ];
};
}