mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 08:01:31 +00:00
ocamlPackages.lun: init at 0.0.1
This commit is contained in:
committed by
Vincent Laporte
parent
7b6b919f3a
commit
0c1938bfd9
20
pkgs/development/ocaml-modules/lun/default.nix
Normal file
20
pkgs/development/ocaml-modules/lun/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
||||
@@ -964,6 +964,8 @@ let
|
||||
|
||||
lua-ml = callPackage ../development/ocaml-modules/lua-ml { };
|
||||
|
||||
lun = callPackage ../development/ocaml-modules/lun { };
|
||||
|
||||
lustre-v6 = callPackage ../development/ocaml-modules/lustre-v6 { };
|
||||
|
||||
lutils = callPackage ../development/ocaml-modules/lutils { };
|
||||
|
||||
Reference in New Issue
Block a user