summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMagnus Jonsson <jmagnusj@gmail.com>2018-11-25 11:49:24 -0500
committerWael Nasreddine <wael.nasreddine@gmail.com>2018-12-01 19:00:23 -0800
commitd23acab3a365eb0f620c0849a3ffb8b6c72f8a4d (patch)
tree39b4310831ab66a5ebb498c0464e0a70b91ceb6f /pkgs/development
parent4226ddc0340cd492ee46f840c21b407bc229cadb (diff)
downloadnixpkgs-d23acab3a365eb0f620c0849a3ffb8b6c72f8a4d.tar
nixpkgs-d23acab3a365eb0f620c0849a3ffb8b6c72f8a4d.tar.gz
nixpkgs-d23acab3a365eb0f620c0849a3ffb8b6c72f8a4d.tar.bz2
nixpkgs-d23acab3a365eb0f620c0849a3ffb8b6c72f8a4d.tar.lz
nixpkgs-d23acab3a365eb0f620c0849a3ffb8b6c72f8a4d.tar.xz
nixpkgs-d23acab3a365eb0f620c0849a3ffb8b6c72f8a4d.tar.zst
nixpkgs-d23acab3a365eb0f620c0849a3ffb8b6c72f8a4d.zip
ocamlPackages.opti: init at 1.0.3
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/opti/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/opti/default.nix b/pkgs/development/ocaml-modules/opti/default.nix
new file mode 100644
index 00000000000..7b084e61688
--- /dev/null
+++ b/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;
+  };
+}