mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
31 lines
650 B
Nix
31 lines
650 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, fetchurl
|
|
, cstruct
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "rio";
|
|
version = "0.0.8";
|
|
|
|
minimalOCamlVersion = "5.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/riot-ml/riot/releases/download/${version}/riot-${version}.tbz";
|
|
hash = "sha256-SsiDz53b9bMIT9Q3IwDdB3WKy98WSd9fiieU41qZpeE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cstruct
|
|
];
|
|
|
|
meta = {
|
|
description = "Ergonomic, composable, efficient read/write streams";
|
|
homepage = "https://github.com/riot-ml/riot";
|
|
changelog = "https://github.com/riot-ml/riot/blob/${version}/CHANGES.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|
|
|