Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / opti / default.nix
blob4ce5087912d292f1c9310337130781062dd12c9f
1 { lib, fetchurl, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "opti";
5   version = "1.0.3";
7   useDune2 = true;
9   minimumOCamlVersion = "4.02";
11   src = fetchurl {
12     url = "https://github.com/magnusjonsson/opti/releases/download/${version}/opti-${version}.tbz";
13     sha256 = "ed9ba56dc06e9d2b1bf097964cc65ea37db787d4f239c13d0dd74693f5b50a1e";
14   };
16   meta = with lib; {
17     description = "DSL to generate fast incremental C code from declarative specifications";
18     license = licenses.bsd3;
19     maintainers = [ maintainers.jmagnusj ];
20     homepage = "https://github.com/magnusjonsson/opti";
21   };