mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ocamlPackages.riot: 0.0.7 → 0.0.8
ocamlPackages.minttea: 0.0.1 → 0.0.3
This commit is contained in:
parent
242e322244
commit
51a4edb8c3
@ -7,13 +7,13 @@
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "minttea";
|
||||
version = "0.0.1";
|
||||
version = "0.0.3";
|
||||
|
||||
minimalOCamlVersion = "5.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/leostera/minttea/releases/download/${version}/minttea-${version}.tbz";
|
||||
hash = "sha256-+4nVeYKx2A2i2nll/PbStcEa+Dvxd0T7e/KsdJqY4bI=";
|
||||
hash = "sha256-WEaJVCCvsmKcF8+yzovljt8dGWaIv4UmAr74jq6Vo9M=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
@ -21,8 +21,6 @@ buildDunePackage rec {
|
||||
tty
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "A fun, functional, and stateful way to build terminal apps in OCaml heavily inspired by Go's BubbleTea";
|
||||
homepage = "https://github.com/leostera/minttea";
|
||||
|
@ -1,36 +1,34 @@
|
||||
{ lib
|
||||
, buildDunePackage
|
||||
, cstruct
|
||||
, fetchurl
|
||||
, mdx
|
||||
, poll
|
||||
, ptime
|
||||
, mirage-crypto-rng
|
||||
, mtime
|
||||
, gluon
|
||||
, randomconv
|
||||
, rio
|
||||
, telemetry
|
||||
, uri
|
||||
, tls
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "riot";
|
||||
version = "0.0.7";
|
||||
version = "0.0.8";
|
||||
|
||||
minimalOCamlVersion = "5.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/leostera/riot/releases/download/${version}/riot-${version}.tbz";
|
||||
hash = "sha256-t+PMBh4rZXi82dUljv3nLzZX5o1iagBbQ9FfGnr/dp4=";
|
||||
hash = "sha256-SsiDz53b9bMIT9Q3IwDdB3WKy98WSd9fiieU41qZpeE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cstruct
|
||||
poll
|
||||
ptime
|
||||
gluon
|
||||
mirage-crypto-rng
|
||||
mtime
|
||||
randomconv
|
||||
rio
|
||||
telemetry
|
||||
uri
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
mdx
|
||||
mdx.bin
|
||||
tls
|
||||
];
|
||||
|
||||
doCheck = false; # fails on sandbox
|
||||
|
Loading…
Reference in New Issue
Block a user