summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/rope
diff options
context:
space:
mode:
authorMalo Bourgon <mbourgon@gmail.com>2022-05-10 10:36:58 -0700
committerVincent Laporte <vbgl@users.noreply.github.com>2022-05-11 09:02:37 +0200
commitbca4ad048701d2b0a472c0e0f0e3e24d62ccc9b0 (patch)
tree5c31787ea8714d5de981ccce38ca7a4326069424 /pkgs/development/ocaml-modules/rope
parentb1de4bf60f955ed59adb2d8878eb0b5d55fb1b4e (diff)
downloadnixpkgs-bca4ad048701d2b0a472c0e0f0e3e24d62ccc9b0.tar
nixpkgs-bca4ad048701d2b0a472c0e0f0e3e24d62ccc9b0.tar.gz
nixpkgs-bca4ad048701d2b0a472c0e0f0e3e24d62ccc9b0.tar.bz2
nixpkgs-bca4ad048701d2b0a472c0e0f0e3e24d62ccc9b0.tar.lz
nixpkgs-bca4ad048701d2b0a472c0e0f0e3e24d62ccc9b0.tar.xz
nixpkgs-bca4ad048701d2b0a472c0e0f0e3e24d62ccc9b0.tar.zst
nixpkgs-bca4ad048701d2b0a472c0e0f0e3e24d62ccc9b0.zip
ocamlPackages: inherit ocaml.meta.platforms
Diffstat (limited to 'pkgs/development/ocaml-modules/rope')
-rw-r--r--pkgs/development/ocaml-modules/rope/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/rope/default.nix b/pkgs/development/ocaml-modules/rope/default.nix
index 9ac090a780e..483aefef12d 100644
--- a/pkgs/development/ocaml-modules/rope/default.nix
+++ b/pkgs/development/ocaml-modules/rope/default.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation ({
 
   meta = {
     homepage = "http://rope.forge.ocamlcore.org/";
-    platforms = ocaml.meta.platforms or [];
+    inherit (ocaml.meta) platforms;
     description = ''Ropes ("heavyweight strings") in OCaml'';
     license = lib.licenses.lgpl21;
     maintainers = with lib.maintainers; [ volth ];