ocamlPackages.opti: init at 1.0.3

This commit is contained in:
Magnus Jonsson 2018-11-25 11:49:24 -05:00 committed by Wael Nasreddine
parent 4226ddc034
commit d23acab3a3
3 changed files with 25 additions and 0 deletions

View file

@ -2052,6 +2052,11 @@
github = "jluttine";
name = "Jaakko Luttinen";
};
jmagnusj = {
email = "jmagnusj@gmail.com";
github = "magnusjonsson";
name = "Johan Magnus Jonsson";
};
jmettes = {
email = "jonathan@jmettes.com";
github = "jmettes";

View file

@ -0,0 +1,18 @@
{ stdenv, fetchurl, buildDunePackage }:
buildDunePackage rec {
pname = "opti";
version = "1.0.3";
src = fetchurl {
url = "https://github.com/magnusjonsson/opti/releases/download/${version}/opti-${version}.tbz";
sha256 = "ed9ba56dc06e9d2b1bf097964cc65ea37db787d4f239c13d0dd74693f5b50a1e";
};
meta = with stdenv.lib; {
description = "DSL to generate fast incremental C code from declarative specifications";
license = licenses.bsd3;
maintainers = [ maintainers.jmagnusj ];
homepage = https://github.com/magnusjonsson/opti;
};
}

View file

@ -552,6 +552,8 @@ let
opam-file-format = callPackage ../development/ocaml-modules/opam-file-format { };
opti = callPackage ../development/ocaml-modules/opti { };
otfm = callPackage ../development/ocaml-modules/otfm { };
otr = callPackage ../development/ocaml-modules/otr { };