Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.lun: init at 0.0.1

authored by Mario Rodas and committed by Vincent Laporte 0c1938bf 7b6b919f

+22
+20
pkgs/development/ocaml-modules/lun/default.nix
··· 1 + { lib, buildDunePackage, fetchurl }: 2 + 3 + buildDunePackage rec { 4 + pname = "lun"; 5 + version = "0.0.1"; 6 + 7 + minimalOCamlVersion = "4.12.0"; 8 + 9 + src = fetchurl { 10 + url = "https://github.com/robur-coop/lun/releases/download/v${version}/lun-${version}.tbz"; 11 + hash = "sha256-zKi63/g7Rw/c+xhAEW+Oim8suGzeL0TtKM8my/aSp5M="; 12 + }; 13 + 14 + meta = { 15 + description = "Optics in OCaml"; 16 + homepage = "https://git.robur.coop/robur/lun"; 17 + license = lib.licenses.isc; 18 + maintainers = with lib.maintainers; [ marsam ]; 19 + }; 20 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 964 964 965 965 lua-ml = callPackage ../development/ocaml-modules/lua-ml { }; 966 966 967 + lun = callPackage ../development/ocaml-modules/lun { }; 968 + 967 969 lustre-v6 = callPackage ../development/ocaml-modules/lustre-v6 { }; 968 970 969 971 lutils = callPackage ../development/ocaml-modules/lutils { };