forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / opti / default.nix
blob1d854a1fda5028b935162058e86e1dc237da6f44
1 { lib, fetchurl, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "opti";
5   version = "1.0.3";
7   useDune2 = true;
9   minimalOCamlVersion = "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   };