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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
505 B
Nix
Raw Permalink Normal View History

2023-10-01 06:20:00 +02:00
{ 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;
2024-04-24 06:20:00 +02:00
maintainers = with lib.maintainers; [ ];
2023-10-01 06:20:00 +02:00
};
}