summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-01-12 19:59:15 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-01-13 09:19:22 +0100
commitd96c347f9d708581af02b2ea5c5dbb8de0f8b0c5 (patch)
tree8170ed5477f5e42944a31afcb4d6bc06e1b55a5e /pkgs/development/ocaml-modules
parente12409de8932ee9671b55b3c4e104595648b913e (diff)
ocamlPackages.nonstd: fix fetch error by using fetchzip
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/nonstd/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/nonstd/default.nix b/pkgs/development/ocaml-modules/nonstd/default.nix
index 150edb3174c4..a584f7bc9ed1 100644
--- a/pkgs/development/ocaml-modules/nonstd/default.nix
+++ b/pkgs/development/ocaml-modules/nonstd/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromBitbucket, buildDunePackage }:
+{ lib, fetchzip, buildDunePackage }:
buildDunePackage rec {
pname = "nonstd";
@@ -6,10 +6,8 @@ buildDunePackage rec {
minimumOCamlVersion = "4.02";
- src = fetchFromBitbucket {
- owner = "smondet";
- repo = pname;
- rev = "${pname}.${version}";
+ src = fetchzip {
+ url = "https://bitbucket.org/smondet/${pname}/get/${pname}.${version}.tar.gz";
sha256 = "0ccjwcriwm8fv29ij1cnbc9win054kb6pfga3ygzdbjpjb778j46";
};