nixpkgs/pkgs/development/ocaml-modules/opti/default.nix

23 lines
610 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage }:
2018-11-25 16:49:24 +00:00
buildDunePackage rec {
pname = "opti";
version = "1.0.3";
2021-04-05 15:11:00 +00:00
useDune2 = true;
minimumOCamlVersion = "4.02";
2018-11-25 16:49:24 +00:00
src = fetchurl {
url = "https://github.com/magnusjonsson/opti/releases/download/${version}/opti-${version}.tbz";
sha256 = "ed9ba56dc06e9d2b1bf097964cc65ea37db787d4f239c13d0dd74693f5b50a1e";
};
meta = with lib; {
2018-11-25 16:49:24 +00:00
description = "DSL to generate fast incremental C code from declarative specifications";
license = licenses.bsd3;
maintainers = [ maintainers.jmagnusj ];
homepage = "https://github.com/magnusjonsson/opti";
2018-11-25 16:49:24 +00:00
};
}