aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/ctypes
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-02-23 17:19:25 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2018-02-28 19:10:34 +0100
commit7f327dfa63c09997213dc8b710e777fd4ed5cf97 (patch)
treeac9e943ba99a0961244a9a7f08a349131a93ab09 /pkgs/development/ocaml-modules/ctypes
parentd8ab8ddae1c3e5d0ce872a2cbfabaa616e6f93eb (diff)
ocamlPackages.ctypes: 0.11.5 -> 0.13.1
Diffstat (limited to 'pkgs/development/ocaml-modules/ctypes')
-rw-r--r--pkgs/development/ocaml-modules/ctypes/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/ctypes/default.nix b/pkgs/development/ocaml-modules/ctypes/default.nix
index b419971921ba..0ddf3cb5995c 100644
--- a/pkgs/development/ocaml-modules/ctypes/default.nix
+++ b/pkgs/development/ocaml-modules/ctypes/default.nix
@@ -1,19 +1,19 @@
-{stdenv, buildOcaml, fetchurl, libffi, pkgconfig, ncurses}:
+{ stdenv, buildOcaml, fetchzip, libffi, pkgconfig, ncurses, integers }:
buildOcaml rec {
name = "ctypes";
- version = "0.11.5";
+ version = "0.13.1";
minimumSupportedOcamlVersion = "4";
- src = fetchurl {
- url = "https://github.com/ocamllabs/ocaml-ctypes/archive/${version}.tar.gz";
- sha256 = "164gyrs6zxr5pyljwpjgd4knwlrkcmamsq3gvkkkvgf9rmhrl3zf";
+ src = fetchzip {
+ url = "https://github.com/ocamllabs/ocaml-ctypes/archive/67e711ec891e087fbe1e0b4665aa525af4eaa409.tar.gz";
+ sha256 = "1z84s5znr3lj84rzv6m37xxj9h7fwx4qiiykx3djf52qgk1rb2xb";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses ];
- propagatedBuildInputs = [ libffi ];
+ propagatedBuildInputs = [ integers libffi ];
hasSharedObjects = true;