ocamlPackages.algaeff: init at 0.2.1

This commit is contained in:
Vincent Laporte 2023-04-02 15:17:15 +02:00
parent c7117a1e19
commit 0d7be800f7
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib
, buildDunePackage
, fetchFromGitHub
}:
buildDunePackage rec {
pname = "algaeff";
version = "0.2.1";
minimalOCamlVersion = "5.0";
duneVersion = "3";
src = fetchFromGitHub {
owner = "RedPRL";
repo = pname;
rev = version;
hash = "sha256-jpnJhF+LN2ef6QPLcCHxcMg3Fr3GSLOnJkZ9ZUIOrlY=";
};
meta = {
description = "Reusable Effects-Based Components";
homepage = "https://github.com/RedPRL/algaeff";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -18,6 +18,8 @@ let
alcotest-mirage = callPackage ../development/ocaml-modules/alcotest/mirage.nix {};
algaeff = callPackage ../development/ocaml-modules/algaeff { };
alsa = callPackage ../development/ocaml-modules/alsa { };
angstrom = callPackage ../development/ocaml-modules/angstrom { };