summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2017-01-25 01:51:05 -0500
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-03-29 05:29:14 +0000
commit750dca50243d6c7e6ddd98165c7e6a0edba180b2 (patch)
treeee1898df11ddc351ba85cc94c2f32bbdb528f031 /pkgs/development/ocaml-modules
parentda79d1f01f6bd70833543cab5308d2439c429f9e (diff)
downloadnixlib-750dca50243d6c7e6ddd98165c7e6a0edba180b2.tar
nixlib-750dca50243d6c7e6ddd98165c7e6a0edba180b2.tar.gz
nixlib-750dca50243d6c7e6ddd98165c7e6a0edba180b2.tar.bz2
nixlib-750dca50243d6c7e6ddd98165c7e6a0edba180b2.tar.lz
nixlib-750dca50243d6c7e6ddd98165c7e6a0edba180b2.tar.xz
nixlib-750dca50243d6c7e6ddd98165c7e6a0edba180b2.tar.zst
nixlib-750dca50243d6c7e6ddd98165c7e6a0edba180b2.zip
ocaml-bitstring: git -> 2.1.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/bitstring/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/bitstring/default.nix b/pkgs/development/ocaml-modules/bitstring/default.nix
index 26b41a75146f..d6909efe4a6d 100644
--- a/pkgs/development/ocaml-modules/bitstring/default.nix
+++ b/pkgs/development/ocaml-modules/bitstring/default.nix
@@ -1,14 +1,14 @@
-{ stdenv, fetchzip, buildOcaml, time, autoconf, automake }:
+{ stdenv, fetchurl, buildOcaml, time, autoconf, automake }:
 
 buildOcaml rec {
   name = "bitstring";
-  version = "f1673f8"; 
-  src = fetchzip {
-    url = https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/bitstring/source-archive.zip;
-    sha256 = "03343yggwp3y483zj5axaalxlnl698xrjiv3hmd4c2s05g53iwas";
+  version = "2.1.0";
+  src = fetchurl {
+    url = http://github.com/xguerin/bitstring/archive/v2.1.0.tar.gz;
+    sha256 = "0miw4banfpmx4kxrckpqr57b1fcmsqdmspyjx6gqjd4kghm4l7xj";
   };
 
-  patches = [ ./camlp4-git.patch ./meta.patch ./srcdir.patch ];
+  patches = [ ./camlp4-git.patch ./srcdir.patch ];
 
   buildInputs = [time autoconf automake];
   doCheck = true;