summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/opti/default.nix
blob: f6552d57683f1d4dd534200308ab079df974254e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, buildDunePackage }:

buildDunePackage rec {
  pname = "opti";
  version = "1.0.3";

  minimumOCamlVersion = "4.02";

  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;
  };
}