depot/third_party/nixpkgs/pkgs/development/ocaml-modules/lun/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

20 lines
512 B
Nix

{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
pname = "lun";
version = "0.0.1";
minimalOCamlVersion = "4.12.0";
src = fetchurl {
url = "https://github.com/robur-coop/lun/releases/download/v${version}/lun-${version}.tbz";
hash = "sha256-zKi63/g7Rw/c+xhAEW+Oim8suGzeL0TtKM8my/aSp5M=";
};
meta = {
description = "Optics in OCaml";
homepage = "https://git.robur.coop/robur/lun";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ marsam ];
};
}