ocamlPackages.rebez: init unstable-2019-06-20

This commit is contained in:
superherointj 2022-04-18 18:29:49 -03:00 committed by Vincent Laporte
parent 430c56976f
commit b2b02f3026
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ buildDunePackage, fetchFromGitHub, lib, reason }:
buildDunePackage rec {
pname = "rebez";
version = "unstable-2019-06-20";
src = fetchFromGitHub {
owner = "jchavarri";
repo = "rebez";
rev = "03fa3b707abb28fdd710eb9e57ba40d9cd6ae163";
sha256 = "sha256-khZSwtwW+mP/EvAvIZMQyOb6FgNR+gmzpBZoD9ZPkpY=";
};
nativeBuildInputs = [ reason ];
meta = with lib; {
description = "Cubic bezier implementation in Reason / OCaml";
homepage = "https://github.com/jchavarri/rebez/";
maintainers = with maintainers; [ superherointj ];
license = licenses.mit;
};
}

View file

@ -1260,6 +1260,8 @@ let
reason-native = lib.recurseIntoAttrs (callPackage ../development/ocaml-modules/reason-native { });
rebez = callPackage ../development/ocaml-modules/rebez { };
rfc7748 = callPackage ../development/ocaml-modules/rfc7748 { };
ezresto = callPackage ../development/ocaml-modules/resto/ezresto.nix { };