about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-01-20 17:28:59 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-01-28 10:35:53 +0100
commit4c9a74aa459dc525fcfdfb3019b234f68de66c8a (patch)
tree3184b6e3f669a0f25a011e744aae02d86d4d5015 /pkgs/development/ocaml-modules
parentef8f775d2a8f4a631a03b2a2c6ab890bd83d83ab (diff)
downloadnixlib-4c9a74aa459dc525fcfdfb3019b234f68de66c8a.tar
nixlib-4c9a74aa459dc525fcfdfb3019b234f68de66c8a.tar.gz
nixlib-4c9a74aa459dc525fcfdfb3019b234f68de66c8a.tar.bz2
nixlib-4c9a74aa459dc525fcfdfb3019b234f68de66c8a.tar.lz
nixlib-4c9a74aa459dc525fcfdfb3019b234f68de66c8a.tar.xz
nixlib-4c9a74aa459dc525fcfdfb3019b234f68de66c8a.tar.zst
nixlib-4c9a74aa459dc525fcfdfb3019b234f68de66c8a.zip
ocamlPackages.curly: add missing meta set
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/curly/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/curly/default.nix b/pkgs/development/ocaml-modules/curly/default.nix
index 491b2844ef1d..1c48b509c414 100644
--- a/pkgs/development/ocaml-modules/curly/default.nix
+++ b/pkgs/development/ocaml-modules/curly/default.nix
@@ -26,5 +26,12 @@ buildDunePackage rec {
     substituteInPlace src/curly.ml \
       --replace "exe=\"curl\"" "exe=\"${curl}/bin/curl\""
     '';
+
+  meta = with lib; {
+    description = "Curly is a brain dead wrapper around the curl command line utility";
+    homepage = "https://github.com/rgrinberg/curly";
+    license = licenses.isc;
+    maintainers = [ maintainers.sternenseemann ];
+  };
 }