about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/decompress
diff options
context:
space:
mode:
authorMalo Bourgon <mbourgon@gmail.com>2022-05-13 16:48:49 -0700
committerVincent Laporte <vbgl@users.noreply.github.com>2022-05-14 11:31:07 +0200
commitf7ef6329bb21c02342f315201eec0f71e50c0c4c (patch)
tree3b571f5273d3dab21001e0700de7c5fdb5ea9293 /pkgs/development/ocaml-modules/decompress
parent9ae882c6a97dde19f22c7c911844c8f4fd4bd0cf (diff)
ocamlPackages: add meta.mainProgram to many packages
Diffstat (limited to 'pkgs/development/ocaml-modules/decompress')
-rw-r--r--pkgs/development/ocaml-modules/decompress/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/decompress/default.nix b/pkgs/development/ocaml-modules/decompress/default.nix
index 7629349c1d1cd..f329a0ff013bd 100644
--- a/pkgs/development/ocaml-modules/decompress/default.nix
+++ b/pkgs/development/ocaml-modules/decompress/default.nix
@@ -23,8 +23,9 @@ buildDunePackage rec {
 
   meta = {
     description = "Pure OCaml implementation of Zlib";
+    homepage = "https://github.com/mirage/decompress";
     license = lib.licenses.mit;
     maintainers = [ lib.maintainers.vbgl ];
-    homepage = "https://github.com/mirage/decompress";
+    mainProgram = "decompress.pipe";
   };
 }