summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bitstring/default.nix
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-08-19 07:58:05 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-08-19 07:58:05 +0200
commit10767521a05bccab5d8a001383ab3ef3e8ec3344 (patch)
tree45d4bfe0d39267ba359e68621ca393284fc1b932 /pkgs/development/ocaml-modules/bitstring/default.nix
parent8adcc9d764c6f135f8f2000b98a88050955b869e (diff)
downloadnixlib-10767521a05bccab5d8a001383ab3ef3e8ec3344.tar
nixlib-10767521a05bccab5d8a001383ab3ef3e8ec3344.tar.gz
nixlib-10767521a05bccab5d8a001383ab3ef3e8ec3344.tar.bz2
nixlib-10767521a05bccab5d8a001383ab3ef3e8ec3344.tar.lz
nixlib-10767521a05bccab5d8a001383ab3ef3e8ec3344.tar.xz
nixlib-10767521a05bccab5d8a001383ab3ef3e8ec3344.tar.zst
nixlib-10767521a05bccab5d8a001383ab3ef3e8ec3344.zip
ocaml-bitstring-f1673f8: fix source URL
Diffstat (limited to 'pkgs/development/ocaml-modules/bitstring/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/bitstring/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/bitstring/default.nix b/pkgs/development/ocaml-modules/bitstring/default.nix
index 2dc1b515c033..26b41a75146f 100644
--- a/pkgs/development/ocaml-modules/bitstring/default.nix
+++ b/pkgs/development/ocaml-modules/bitstring/default.nix
@@ -1,12 +1,11 @@
-{stdenv, fetchgit, buildOcaml, time, autoconf, automake}:
+{ stdenv, fetchzip, buildOcaml, time, autoconf, automake }:
 
 buildOcaml rec {
   name = "bitstring";
   version = "f1673f8"; 
-  src = fetchgit {
-    url = "https://code.google.com/p/bitstring/";
-    rev = "f1673f8";
-    sha256 = "1lh97qf1b7mq64pxkphr2w91ri5hfwg58cpjb2xd8a453c9jylw4";
+  src = fetchzip {
+    url = https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/bitstring/source-archive.zip;
+    sha256 = "03343yggwp3y483zj5axaalxlnl698xrjiv3hmd4c2s05g53iwas";
   };
 
   patches = [ ./camlp4-git.patch ./meta.patch ./srcdir.patch ];