about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2019-09-24 03:58:56 +0100
committerGitHub <noreply@github.com>2019-09-24 03:58:56 +0100
commit93a1accc26e960eaf891dcf92a336a2e72ffd97b (patch)
tree87b71e97fa0f597df49a1d82774fe4dda930f545 /pkgs
parent64fa9328e5f0232b0e4337a72a16de703d4c997d (diff)
parent31aab48a0a2f8eef385e51bfd780f1af7cd2b952 (diff)
downloadnixlib-93a1accc26e960eaf891dcf92a336a2e72ffd97b.tar
nixlib-93a1accc26e960eaf891dcf92a336a2e72ffd97b.tar.gz
nixlib-93a1accc26e960eaf891dcf92a336a2e72ffd97b.tar.bz2
nixlib-93a1accc26e960eaf891dcf92a336a2e72ffd97b.tar.lz
nixlib-93a1accc26e960eaf891dcf92a336a2e72ffd97b.tar.xz
nixlib-93a1accc26e960eaf891dcf92a336a2e72ffd97b.tar.zst
nixlib-93a1accc26e960eaf891dcf92a336a2e72ffd97b.zip
Merge pull request #69278 from vbgl/ocaml-odoc-1.4.1
ocamlPackages.odoc: 1.3.0 → 1.4.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/odoc/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/odoc/default.nix b/pkgs/development/ocaml-modules/odoc/default.nix
index 0b342a654e6e..75a2dab970ee 100644
--- a/pkgs/development/ocaml-modules/odoc/default.nix
+++ b/pkgs/development/ocaml-modules/odoc/default.nix
@@ -1,22 +1,24 @@
-{ stdenv, fetchFromGitHub, buildDunePackage, cppo, bos, cmdliner, tyxml }:
+{ lib, fetchFromGitHub, buildDunePackage
+, astring, cmdliner, cppo, fpath, result, tyxml
+}:
 
 buildDunePackage rec {
   pname = "odoc";
-  version = "1.3.0";
+  version = "1.4.2";
 
   src = fetchFromGitHub {
     owner = "ocaml";
     repo = pname;
     rev = version;
-    sha256 = "0hjan5aj5zk8j8qyagv9r4hqm469mh207cv2m6kxwgnw0c3cz7sy";
+    sha256 = "0rvhx139jx6wmlfz355mja6mk03x4swq1xxvk5ky6jzhalq3cf5i";
   };
 
-  buildInputs = [ cppo bos cmdliner tyxml ];
+  buildInputs = [ astring cmdliner cppo fpath result tyxml ];
 
   meta = {
     description = "A documentation generator for OCaml";
-    license = stdenv.lib.licenses.isc;
-    maintainers = [ stdenv.lib.maintainers.vbgl ];
+    license = lib.licenses.isc;
+    maintainers = [ lib.maintainers.vbgl ];
     inherit (src.meta) homepage;
   };
 }