summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/uuidm
diff options
context:
space:
mode:
authorMalo Bourgon <mbourgon@gmail.com>2022-05-09 10:30:27 -0700
committerVincent Laporte <vbgl@users.noreply.github.com>2022-05-11 09:02:37 +0200
commitb1de4bf60f955ed59adb2d8878eb0b5d55fb1b4e (patch)
tree0c0fdff97b491066a863d471c5914f68225e6133 /pkgs/development/ocaml-modules/uuidm
parentf770655390a7e450b5de299ec5d458da58b43b2b (diff)
downloadnixpkgs-b1de4bf60f955ed59adb2d8878eb0b5d55fb1b4e.tar
nixpkgs-b1de4bf60f955ed59adb2d8878eb0b5d55fb1b4e.tar.gz
nixpkgs-b1de4bf60f955ed59adb2d8878eb0b5d55fb1b4e.tar.bz2
nixpkgs-b1de4bf60f955ed59adb2d8878eb0b5d55fb1b4e.tar.lz
nixpkgs-b1de4bf60f955ed59adb2d8878eb0b5d55fb1b4e.tar.xz
nixpkgs-b1de4bf60f955ed59adb2d8878eb0b5d55fb1b4e.tar.zst
nixpkgs-b1de4bf60f955ed59adb2d8878eb0b5d55fb1b4e.zip
ocamlPackages: add meta.mainProgram to many packages
Diffstat (limited to 'pkgs/development/ocaml-modules/uuidm')
-rw-r--r--pkgs/development/ocaml-modules/uuidm/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/uuidm/default.nix b/pkgs/development/ocaml-modules/uuidm/default.nix
index 336d66cb0a6..7df1c588dd3 100644
--- a/pkgs/development/ocaml-modules/uuidm/default.nix
+++ b/pkgs/development/ocaml-modules/uuidm/default.nix
@@ -18,7 +18,8 @@ stdenv.mkDerivation rec {
     description = "An OCaml module implementing 128 bits universally unique identifiers version 3, 5 (name based with MD5, SHA-1 hashing) and 4 (random based) according to RFC 4122";
     homepage = "https://erratique.ch/software/uuidm";
     license = licenses.bsd3;
-    platforms = ocaml.meta.platforms or [];
     maintainers = [ maintainers.maurer ];
+    mainProgram = "uuidtrip";
+    platforms = ocaml.meta.platforms or [];
   };
 }