From 96a7899c8ae0e01a64158488b1f1837b2181b5ea Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Mon, 4 May 2026 15:49:41 +0200 Subject: [PATCH] ocamlPackages.asetmap: set license source: https://github.com/dbuenzli/asetmap/blob/master/LICENSE.md --- pkgs/development/ocaml-modules/asetmap/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/ocaml-modules/asetmap/default.nix b/pkgs/development/ocaml-modules/asetmap/default.nix index 0c1037e1c5ff..840cf7a5ae3a 100644 --- a/pkgs/development/ocaml-modules/asetmap/default.nix +++ b/pkgs/development/ocaml-modules/asetmap/default.nix @@ -1,4 +1,5 @@ { + lib, fetchurl, buildDunePackage, topkg, @@ -27,5 +28,8 @@ buildDunePackage (finalAttrs: { inherit (topkg) buildPhase installPhase; - meta = { inherit (ocaml.meta) platforms; }; + meta = { + inherit (ocaml.meta) platforms; + license = lib.licenses.isc; + }; })