depot/pkgs/development/ocaml-modules/mirage-flow/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

24 lines
630 B
Nix

{ lib, buildDunePackage, fetchurl, cstruct, fmt, lwt }:
buildDunePackage rec {
pname = "mirage-flow";
version = "4.0.2";
minimalOCamlVersion = "4.05";
src = fetchurl {
url = "https://github.com/mirage/mirage-flow/releases/download/v${version}/mirage-flow-${version}.tbz";
hash = "sha256-SGXj3S4b53O9JENUFuMl3I+QoiZ0QSrYu7zTet7q+1o=";
};
propagatedBuildInputs = [ cstruct fmt lwt ];
meta = {
description = "Flow implementations and combinators for MirageOS";
homepage = "https://github.com/mirage/mirage-flow";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}