summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-04-10 05:30:20 +0000
committerJon <jonringer@users.noreply.github.com>2020-04-10 01:45:40 -0700
commit807ca93fadd5197c2260490de0c76e500562dc05 (patch)
tree6efbf5d34055f242a02fefc7974bac32445b67e7
parent6fcf77e87a71bfdf70c158ac9b820deda23701e9 (diff)
downloadnixpkgs-807ca93fadd5197c2260490de0c76e500562dc05.tar
nixpkgs-807ca93fadd5197c2260490de0c76e500562dc05.tar.gz
nixpkgs-807ca93fadd5197c2260490de0c76e500562dc05.tar.bz2
nixpkgs-807ca93fadd5197c2260490de0c76e500562dc05.tar.lz
nixpkgs-807ca93fadd5197c2260490de0c76e500562dc05.tar.xz
nixpkgs-807ca93fadd5197c2260490de0c76e500562dc05.tar.zst
nixpkgs-807ca93fadd5197c2260490de0c76e500562dc05.zip
ocamlPackages.ctypes: 0.15.1 -> 0.17.1
-rw-r--r--pkgs/development/ocaml-modules/ctypes/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/ctypes/default.nix b/pkgs/development/ocaml-modules/ctypes/default.nix
index bc76cfcd64c..8a16dcec343 100644
--- a/pkgs/development/ocaml-modules/ctypes/default.nix
+++ b/pkgs/development/ocaml-modules/ctypes/default.nix
@@ -6,11 +6,11 @@ else
 
 stdenv.mkDerivation rec {
   name = "ocaml${ocaml.version}-ctypes-${version}";
-  version = "0.15.1";
+  version = "0.17.1";
 
   src = fetchzip {
     url = "https://github.com/ocamllabs/ocaml-ctypes/archive/${version}.tar.gz";
-    sha256 = "0adas974bwinn8jidb6chljkpd70s041h2a969dicsj0xsg6wys6";
+    sha256 = "16brmdnz7wi2z25qqhd5s5blyq4app6jbv6g9pa4vyg6h0nzbcys";
   };
 
   nativeBuildInputs = [ pkgconfig ];
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    homepage = https://github.com/ocamllabs/ocaml-ctypes;
+    homepage = "https://github.com/ocamllabs/ocaml-ctypes";
     description = "Library for binding to C libraries using pure OCaml";
     license = licenses.mit;
     maintainers = [ maintainers.ericbmerritt ];