Skip to content

Commit

Permalink
ocamlPackages.opti: init at 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
magnusjonsson committed Dec 2, 2018
1 parent 22ec512 commit 1d5bc15
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Expand Up @@ -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";
Expand Down
18 changes: 18 additions & 0 deletions pkgs/development/ocaml-modules/opti/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 1d5bc15

Please sign in to comment.